MPlb Posted May 30, 2008 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
Prophet Posted May 30, 2008 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 |+==================================================================+
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now