dufran3 Posted November 27, 2006 Posted November 27, 2006 I am not sure of the best way to do this...my script is going to be doing several things in the background, all hidden, I would like somehow to have a splash image or something, with a progress bar, displayed on the screen until my script is finished. I tried using the 'SplashImageOn' Function but I"m not sure if that can hold a progress bar. Not sure whether or not to create a GUI, since I really would like it to just look like a splash image with a progress bar...any ideas?
BigDod Posted November 27, 2006 Posted November 27, 2006 Use Koda to make your GUI #include <GUIConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("AForm1", 633, 447, 193, 115, BitOR($WS_SYSMENU,$WS_POPUPWINDOW,$WS_BORDER), $WS_EX_TOPMOST) $Progress1 = GUICtrlCreateProgress(152, 368, 305, 25) GUICtrlSetData(-1, 25) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch 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
dufran3 Posted November 27, 2006 Author Posted November 27, 2006 I've never used Koda before...hrmm..
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