Juppie7 Posted July 10, 2008 Posted July 10, 2008 is it possible to have a MsgBox continue script execution while it is displayed? That way a GUI, for instance, will show up while a message box shows information about that gui? possibly a DLLCall to open a win32 MessageBoxA(..) function, so that script execution will continue after the display?
ChrisL Posted July 10, 2008 Posted July 10, 2008 Like this... _Msgbox(0,"Title","Text",12) For $i = 0 to 9 ToolTip("The script is still running " & 10 - $i) Sleep(1000) Next Func _Msgbox($iType,$vTitle,$vText,$iTimeout=0, $hwnd="") Run(FileGetShortName(@AutoItExe) & ' /AutoIt3ExecuteLine "MsgBox('& $iType & ', ''' & $vTitle & ''', ''' & $vText & ''',''' & $iTimeout & ''',''' & $hwnd & ''')"') EndFunc [u]Scripts[/u]Minimize gui to systray _ Fail safe source recoveryMsgbox UDF _ _procwatch() Stop your app from being closedLicensed/Trial software system _ Buffering Hotkeys_SQL.au3 ADODB.Connection _ Search 2d Arrays_SplashTextWithGraphicOn() _ Adjust Screen GammaTransparent Controls _ Eventlogs without the crap_GuiCtrlCreateFlash() _ Simple Interscript communication[u]Websites[/u]Curious Campers VW Hightops Lambert Plant Hire
ChrisL Posted July 10, 2008 Posted July 10, 2008 (edited) Edit: Forum timed out and double posted Edited July 10, 2008 by ChrisL [u]Scripts[/u]Minimize gui to systray _ Fail safe source recoveryMsgbox UDF _ _procwatch() Stop your app from being closedLicensed/Trial software system _ Buffering Hotkeys_SQL.au3 ADODB.Connection _ Search 2d Arrays_SplashTextWithGraphicOn() _ Adjust Screen GammaTransparent Controls _ Eventlogs without the crap_GuiCtrlCreateFlash() _ Simple Interscript communication[u]Websites[/u]Curious Campers VW Hightops Lambert Plant Hire
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