Phil
Search found 5 matches
- Thu Jan 04, 2007 12:45 pm
- Forum: Windows
- Topic: Hide text cursor (caret) in readonly string gadget ?
- Replies: 2
- Views: 1819
- Thu Jan 04, 2007 11:30 am
- Forum: Windows
- Topic: Hide text cursor (caret) in readonly string gadget ?
- Replies: 2
- Views: 1819
Hide text cursor (caret) in readonly string gadget ?
Anyone know if this is possible ?
I'd also like to disable text selection
Even changing the color to the same as background would help.
Thanks
Phil
I'd also like to disable text selection
Even changing the color to the same as background would help.
Thanks
Phil
- Fri Jul 21, 2006 10:51 am
- Forum: Off Topic
- Topic: Looking for library to access MS SQL server
- Replies: 30
- Views: 13938
- Sun Dec 25, 2005 11:31 am
- Forum: Coding Questions
- Topic: Stupido string questions..
- Replies: 21
- Views: 5507
or using RemoveString
Code: Select all
test$="aftershave"
test$=RemoveString(test$, "after")
Debug (test$)
test$="aftershave"
test$=RemoveString(test$,"shave")
Debug (test$)
- Sun Dec 25, 2005 11:28 am
- Forum: Coding Questions
- Topic: Stupido string questions..
- Replies: 21
- Views: 5507
Just replace with null string.....
Code: Select all
test$="aftershave"
test$=ReplaceString(test$,"after","")
Debug (test$)
test$="aftershave"
test$=ReplaceString(test$,"shave","")
Debug (test$)