jruelan Posted November 6, 2007 Posted November 6, 2007 that is, msgbox is owned by a parent window, tnx
iceberg Posted November 6, 2007 Posted November 6, 2007 not that i know of...maybe instead of a msgbox u can try with another GUI mouse not found....scroll any mouse to continue.
Vindicator209 Posted November 6, 2007 Posted November 6, 2007 Perhaps a Child GUI with $WS_POPUP? [center]"When you look at old, classic games like Snake, you often put it off because it's such a simple game, but it's only when you actually try and create your own unique game from scratch, do you finally appreciate those games."[/center][center]Don't ask for answers if you haven't TRIED yet![/center][center]Most answers can be answered in the help file! Use it![/center]
Siao Posted November 6, 2007 Posted November 6, 2007 That's very simple. Use this Func _MsgBox($iFlags, $sTitle, $sText, $hWnd) Local $aRet = DllCall('user32.dll', 'int', 'MessageBox', 'hwnd', $hWnd, 'str', $sText, 'str', $sTitle, 'uint', $iFlags) Return $aRet[0] EndFunc and specify gui handle. "be smart, drink your wine"
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