Jump to content

Recommended Posts

Posted (edited)

No text shows on this label, seems a little odd.

#include #include GUICreate("")GUICtrlCreateLabel("A",10,10,20,20,BitOR($SS_BLACKFRAME, $SS_CENTER));GUICtrlSetData(-1,"A")GUISetState()DoUntil GUIGetMsg() = $GUI_EVENT_CLOSE

Edited by JohnOne

AutoIt Absolute Beginners    Require a serial    Pause Script    Video Tutorials by Morthawt   ipify 

Monkey's are, like, natures humans.

Posted

can emulate it like this, but it just seems a bit weird.

#include <GUIConstants.au3>
#include <StaticConstants.au3>

GUICreate("")
GUICtrlCreateLabel("A",10,10,20,20,BitOR($SS_BLACKFRAME, $SS_CENTER))
GUICtrlCreateLabel("A",11,11,18,18,$SS_CENTER)
GUISetState()

Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE

AutoIt Absolute Beginners    Require a serial    Pause Script    Video Tutorials by Morthawt   ipify 

Monkey's are, like, natures humans.

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
×
×
  • Create New...