Jump to content

Recommended Posts

Posted

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

Posted

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 |+==================================================================+

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...