I've got a problem with displaying the "&" sign properly. Here's a short example:
$album = "Lock, Stock & Two Smoking Barrels" GuiCreate("test", 600, 210) $abc = GUICtrlCreateLabel ($album, 20, 80, 400, 80) GUISetState() MsgBox(4096,'debug:' , '$album:' & $album) While 1 Sleep (100) WEnd
The label created with GUICtrlCreateLabel shows:
Lock, Stock_Two Smoking Barrels
The message window shows the correct:
Lock, Stock & Two Smoking Barrels
When I replace "&" with "&&" in the string it shows one "&" in the label. Can aynone please explain why this happens? Using v3.1.1 by the way
Thanks
Edited by roboz, 13 July 2005 - 10:24 AM.





