mohammadezazi Posted July 18, 2013 Posted July 18, 2013 Hello How i can create a simple window with GUICreate without any item except a white background. (without Close button, without Minimize button, without Border, without TitleBar, without . . . and with a white background" very similar to a white ToolTip. in other word I want to show a white sheet with some texts in it. Also I want to it can be closed when a user clicks on it.
JohnOne Posted July 18, 2013 Posted July 18, 2013 #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $gui = GUICreate("",200,200,100,100,$WS_POPUP) GUISetBkColor(0xFFFFFF) $Label = GUICtrlCreateLabel("I'm a label",0,0,200,200) GUISetState() Do Until GUIGetMsg() = $Label AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
mohammadezazi Posted July 18, 2013 Author Posted July 18, 2013 (edited) Thank you veryyyyy much mercccccc Edited July 31, 2013 by mohammadezazi
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