Jump to content

Hide window title of the GUI


wip81
 Share

Recommended Posts

Hi community

I'm completely new to AutoIt and I have, after coding some pretty easy scripts, now moved on to the GUI.

I consulted the reference and I searched the forum for the following question, but I couldn't find an answer.

Is it possible to hide the window title - not only the text, but the whole "bar" - so that the GUI actually looks like some sort of picture?

Thanks for any help

Link to comment
Share on other sites

1 example:

#include <GUIConstants.au3>

GUICreate("My GUI", 500, 500, -1, -1, BitOR($WS_POPUP,$WS_THICKFRAME))
$button = GUICtrlCreateButton("Exit", 10, 10)
GUISetState (@SW_SHOW)       ; will display an empty dialog box

While 1
    $msg = GUIGetMsg()
    Switch $msg
        Case $GUI_EVENT_CLOSE, $button
            Exit
    EndSwitch
WEnd

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

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