mbouchard Posted February 9, 2004 Posted February 9, 2004 Is it possible to build an exe for a progress bar that accepts several command line inputs. We use VBscript to install our standard apps and our patches and using an Progress bar would would allow for easier tracking of the install. I.E. WshShell.Run "C:\Progress.exe Text, % complete" Thanks, Mike
scriptkitty Posted February 10, 2004 Posted February 10, 2004 (edited) Compile this. I left all the arguments in place, but optional. You first one would be fine as: C:\Progress.exe Text 100 or if you wanted the window title=Title, %=40, Maintext=Main, subtext=Sub, x=500, y=400, and option as not on top: Progress.exe Title 40 Main Sub 500 400 2 ;progress.au3 precomplie AutoItSetOption("TrayIconHide", 0);1 = Hide Icon winclose("progressbar1");close other progress bar and show this one AutoItWinSetTitle ("progressbar1") $maintext="" $subtext="" $x_pos="" $y_pos="" $opt="" If $CmdLine[0]>0 Then $title= $CmdLine[1] If $CmdLine[0]>1 Then $percent=$CmdLine[2] If $CmdLine[0]>2 Then $maintext=$CmdLine[3] If $CmdLine[0]>3 Then $subtext=$CmdLine[4] If $CmdLine[0]>4 Then $x_pos=$CmdLine[5] If $CmdLine[0]>5 Then $y_pos=$CmdLine[6] If $CmdLine[0]>6 Then $opt=$CmdLine[7] ProgressOn ( $title, "","",$x_pos , $y_pos,$opt) ProgressSet ( $percent ,$subtext,$maintext ) While 1 sleep(500) Wend EndIf Edit.. oh yea, run it without arguments to remove from memory. Edited February 10, 2004 by scriptkitty AutoIt3, the MACGYVER Pocket Knife for computers.
mbouchard Posted February 13, 2004 Author Posted February 13, 2004 Thank you, this works perfectly. I was able to take what you gave me and convert it to work with splashtexton and was wondering if it was possible to get it working with controlsettext to stop the flickering? Thanks again. Mike ;splash.au3 precomplie AutoItSetOption("TrayIconHide", 0);1 = Hide Icon winclose("Splashtext1");close other progress bar and show this one AutoItWinSetTitle ("Splashtext1") If $CmdLine[0]>0 Then $message= $CmdLine[1] SplashTextOn("Title", $message, 240, 120, -1, -1, 4, "") While 1 Sleep(500) wend EndIf
alawoona Posted February 13, 2004 Posted February 13, 2004 Larry - is there any documentation on the values that can be used with the style parameter in AU3GUI? thanx
GEOSoft Posted February 13, 2004 Posted February 13, 2004 Larry - is there any documentation on the values that can be used with the style parameter in AU3GUI?thanx Au3GUI Documentation is an oxymoron. It is one of those programs that utilize a human help file.....Larry. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
GEOSoft Posted February 13, 2004 Posted February 13, 2004 I probably should have held off until after I got a reply to the help request I just sent. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
alawoona Posted February 13, 2004 Posted February 13, 2004 (edited) ok....put another way, wher do these arcane values come from, e.g. $WS_CAPTION = 12582912 $WS_DISABLED = 134217728 I see refernce to this file - AU3_GUI_H.au3 but can't find it Edited February 13, 2004 by alawoona
Valik Posted February 13, 2004 Posted February 13, 2004 (edited) Those are flags that tell the Windows API how the window should look and behave.Edit: More information on what some of the flags do can be found here.The AU3_GUI_H.au3 file should of been somewhere in the archive that had AU3GUI. Edited February 13, 2004 by Valik
alawoona Posted February 13, 2004 Posted February 13, 2004 (edited) found the file.....duh....should have looked there.... thanks for the link Edited February 13, 2004 by alawoona
scriptkitty Posted February 13, 2004 Posted February 13, 2004 btw, did you meen: AutoItSetOption("RunErrorsFatal", 0);0 = silent error (@error set to 1) for Opt("RunErrorsFatal",0) ??? AutoIt3, the MACGYVER Pocket Knife for computers.
Valik Posted February 13, 2004 Posted February 13, 2004 btw, did you meen: AutoItSetOption("RunErrorsFatal", 0);0 = silent error (@error set to 1) for Opt("RunErrorsFatal",0) ???3.0.93 (12th Feb, 2004) - Added: SendAttachMode (AutoItSetOption) - Added: Opt() is an alias for AutoItSetOption()
scriptkitty Posted February 13, 2004 Posted February 13, 2004 oops missed that part. I am still playing around with Larry's Gui. Hmm that doens't sound right AutoIt3, the MACGYVER Pocket Knife for computers.
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