Jump to content

Gui window


plgii
 Share

Recommended Posts

Is there a way to make a GUI window unmovable?

#Include <WindowsConstants.au3>

$hForm = GUICreate('')
GUIRegisterMsg($WM_NCLBUTTONDOWN, 'WM_NCLBUTTONDOWN')
GUISetState()

Do
Until GUIGetMsg() = -3

Func WM_NCLBUTTONDOWN($hWnd, $iMsg, $wParam, $lParam)
    Switch $wParam
        Case 0x02
            Return 0
    EndSwitch
    Return 'GUI_RUNDEFMSG'
EndFunc   ;==>WM_NCLBUTTONDOWN

You can also lock in the menu.

Link to comment
Share on other sites

How would I get that into the following?

GUICreate("Create New Store Database", 410, 180,-1,-1,$WS_EX_DLGMODALFRAME, $WS_EX_TOPMOST)

GUICtrlCreateLabel("CREATING NEW STORE DATABASE...PLEASE WAIT", 30, 30, 350, 300)

Link to comment
Share on other sites

How would I get that into the following?

GUICreate("Create New Store Database", 410, 180,-1,-1,$WS_EX_DLGMODALFRAME, $WS_EX_TOPMOST)

GUICtrlCreateLabel("CREATING NEW STORE DATABASE...PLEASE WAIT", 30, 30, 350, 300)

And what...?
Link to comment
Share on other sites

GUICreate("Create New Store Database", 410, 180,-1,-1,$WS_EX_DLGMODALFRAME, $WS_EX_TOPMOST)

GUICtrlCreateLabel("CREATING NEW STORE DATABASE...PLEASE WAIT", 30, 30, 350, 300)

this is what will show on screen while other code is running to do the database copy stuff and I don't want user to be able to move the dialog box

Link to comment
Share on other sites

GUICreate("Create New Store Database", 410, 180,-1,-1,$WS_EX_DLGMODALFRAME, $WS_EX_TOPMOST)

GUICtrlCreateLabel("CREATING NEW STORE DATABASE...PLEASE WAIT", 30, 30, 350, 300)

this is what will show on screen while other code is running to do the database copy stuff and I don't want user to be able to move the dialog box

GUISetState(@SW_DISABLE)?
Link to comment
Share on other sites

What about if there is another window in background with a button that calls the above window...how can I lock it from being moved also once user has clicked button?

I can lock the window the button calls with the GUISetState(@SW_DISABLE), but user can still move the main windows behind it.

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