[SOLVED] TextGadget - Chr(38) --> &
Posted: Wed Feb 11, 2009 9:32 pm
Code: Select all
TextGadget(0,10,10,200,20,"THIS & THAT & NOTHING") ; <-- Gives "THIS THAT _NOTHING"
http://www.purebasic.com
https://www.purebasic.fr/english/
Code: Select all
TextGadget(0,10,10,200,20,"THIS & THAT & NOTHING") ; <-- Gives "THIS THAT _NOTHING"
Code: Select all
TextGadget(0,10,10,200,20,"THIS & THAT & NOTHING", #SS_NOPREFIX)
Maybe even the PureBasic IDE will use this flag also (let's wait for version 6.0), then you wont see "xx" but the correct "x&x" in the file tab for a loaded file "x&x.pb"gnozal wrote:You could also use :(windows only).Code: Select all
TextGadget(0,10,10,200,20,"THIS & THAT & NOTHING", #SS_NOPREFIX)