Jump to content

GUI: Toolwindow without Close Button


xXx
 Share

Recommended Posts

Is it possible to make a GUI like that:

Posted Image

?

I did this with Koda but when i run it it has the close button anyway

EDIT: oh posted it on wrong section i think... please move to the GUI section

Edited by xXx
Link to comment
Share on other sites

#include <GUIConstants.au3>

GUICreate("My GUI",-1,-1,-1,-1,BitOR($WS_CAPTION, $WS_POPUP))
GUISetState (@SW_SHOW)

While 1
    $msg = GUIGetMsg()
    
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
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...