slightly_abnormal Posted March 9, 2006 Posted March 9, 2006 Can I get a message popup to popup ontop of a window that was set to be on top anyways ; A simple custom messagebox that uses the OnEvent mode for example #include <GUIConstants.au3> Opt("GUIOnEventMode",1) GUICreate("Custom Msgbox", 210, 80, -1, -1, -1, $WS_EX_TOPMOST ) $Label = GUICtrlCreateLabel("Please click a button!", 10, 10) $YesID = GUICtrlCreateButton("Yes", 10, 50, 50, 20) GUICtrlSetOnEvent($YesID,"OnYes") $NoID = GUICtrlCreateButton("No", 80, 50, 50, 20) GUICtrlSetOnEvent($NoID,"OnNo") $ExitID = GUICtrlCreateButton("Exit", 150, 50, 50, 20) GUICtrlSetOnEvent($ExitID,"OnExit") GUISetOnEvent($GUI_EVENT_CLOSE,"OnExit") GUISetState() ; display the GUI While 1 Sleep (1000) WEnd ;--------------- Functions --------------- Func OnYes() MsgBox(0,"You clicked on", "Yes") EndFunc Func OnNo() MsgBox(0,"You clicked on", "No") EndFunc Func OnExit() if @GUI_CtrlId = $ExitId Then MsgBox(0,"You clicked on", "Exit") Else MsgBox(0,"You clicked on", "Close") EndIf Exit EndFunc
Valuater Posted March 9, 2006 Posted March 9, 2006 i use this one alot MsgBox(262208, "Great...", "Customer Updated... ", 4) 8)
slightly_abnormal Posted March 9, 2006 Author Posted March 9, 2006 i use this one alotMsgBox(262208, "Great...", "Customer Updated... ", 4)8)cool.. thanks
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now