Search found 5 matches

by e2robot
Thu Jan 04, 2007 12:45 pm
Forum: Windows
Topic: Hide text cursor (caret) in readonly string gadget ?
Replies: 2
Views: 1779

Thanks that's perfect..... didn't think of that ! :oops:

Phil
by e2robot
Thu Jan 04, 2007 11:30 am
Forum: Windows
Topic: Hide text cursor (caret) in readonly string gadget ?
Replies: 2
Views: 1779

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
by e2robot
Fri Jul 21, 2006 10:51 am
Forum: Off Topic
Topic: Looking for library to access MS SQL server
Replies: 30
Views: 13772

I had the same problem and run a vb script from Purebasic to make the DSN in the ODBC control panel. Then use standard Purebasic database commands.

I basically cut and paste the code from the following site into a file called dsn.vbs

http://www.microsoft.com/technet/scriptcenter/resources/qanda ...
by e2robot
Sun Dec 25, 2005 11:31 am
Forum: Coding Questions
Topic: Stupido string questions..
Replies: 21
Views: 5400

or using RemoveString

Code: Select all

test$="aftershave"
test$=RemoveString(test$, "after")
Debug (test$)


test$="aftershave"
test$=RemoveString(test$,"shave")
Debug (test$)
by e2robot
Sun Dec 25, 2005 11:28 am
Forum: Coding Questions
Topic: Stupido string questions..
Replies: 21
Views: 5400

Just replace with null string.....

Code: Select all

test$="aftershave"
test$=ReplaceString(test$,"after","")
Debug (test$)


test$="aftershave"
test$=ReplaceString(test$,"shave","")
Debug (test$)