Jump to content

A very simple page creation with GUICreate


Recommended Posts

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.

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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