Jump to content

Recommended Posts

Posted

I'd like to label a Button/Label as "✓" <-- Check Mark (U2713)

But everytime I paste this char on the editor, I get "?" instead.

Is there sort of "2713??" method that is internally converted by AutoIt to the Check Mark?

Posted (edited)

What do you get?

#include <GUIConstantsEx.au3>
GUICreate("My GUI", 800, 500)
$sString = ChrW("8730") ; decimal for 221A
GUICtrlCreateLabel("Checkmark: " & $sString, 5, 5, 790, 490)
GUISetState(@SW_SHOW)
While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            ExitLoop
    EndSwitch
WEnd
Edited by water

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted (edited)

:) That was an easy one.

Edited by water

My UDFs and Tutorials:

  Reveal hidden contents

 

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...