Jump to content

Easy GUI questions


VicTT
 Share

Recommended Posts

Hmmm..I might have figured out a work-around for the second part...But I still need a GUI guru's help...How do I surpress the default buttons (minimize, maximize, close) in the upper-right of the window?I read about it, but I thought these are forced styles?How do I disable them?

Quote

Together we might liveDivided we must fall

 

Link to comment
Share on other sites

#include <GUIConstants.au3>
; == GUI generated with Koda ==);
$Form1 = GUICreate("AForm1", 622, 441, 192, 125, BitOR($WS_DLGFRAME,$WS_CLIPSIBLINGS), 0)
GUISetState(@SW_SHOW)
While 1
    $msg = GuiGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop
    Case Else
    ;;;;;;;
    EndSelect
WEnd


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

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