MPlb 0 Report post Posted May 30, 2008 How can I put symbols in commands such as: GUICtrlCreateLabel ("Some text", 10, 60) or MsgBox (48,"Test","Some more text") For example I'd like to put a wingding symbol before the word "Some Using the CHR command I can't seem to find the characters in wingdings, just the standard fonts etc. Thanks Share this post Link to post Share on other sites
Prophet 0 Report post Posted May 30, 2008 CHR only supports the normal ASCI (from 1 to 256) Try ChrW() $text = "" For $i = 256 to 512 $text = $text & ChrW($i) Next MsgBox(0, "Unicode chars 256 to 512", $text) +==================================================================+| The Definition of Madness: Creating a GUI, with GUI automation scripts |+==================================================================+ Share this post Link to post Share on other sites