is it possible to set text of a gadget to something like
"HELLO" instead of HELLO
?
whenever i use those "" again pb recognizes it as end and start of the string. So any other way of doing that?
"" in words
Howdy, welcome to PB boards.
Try
or
(Thats single ' double " single ' in case it turns out unreadable) 
Try
Code: Select all
stringVar.s = chr(34)+"HELLO"+chr(34)
Code: Select all
stringVar.s = chr('"')+"HELLO"+chr('"')

Last edited by Dare2 on Wed Sep 29, 2004 9:13 am, edited 1 time in total.
@}--`--,-- A rose by any other name ..
How about one more answer? (assuming you're using a recent version of PB)
Eric
Code: Select all
stringVar.s = #DQUOTE$ + "HELLO" + #DQUOTE$