yasha Posted November 20, 2018 Posted November 20, 2018 i want to ask is there a way to make an autoit window show the percentage completion like the one you see when you download a game example 1 of 6 99% completed and also i want to run a report but the same .exe program is running any way to stop the .exe file using auto it and run the same .exe afterwords
yasha Posted November 20, 2018 Author Posted November 20, 2018 @water @FrancescoDiMuro sorry to disturb you with this but is my request possible?
careca Posted November 20, 2018 Posted November 20, 2018 Dont do that friend. People will answer when they can. What you ask is very generic, it may be possible, depends a lot on the target application. Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe
FrancescoDiMuro Posted November 20, 2018 Posted November 20, 2018 @yasha I have to agree with @careca By the way, about your request, yes, it could, but as careca said, it depends from many "variables". You want to trace the progress of what application? Because, to build this, you should take some information from that Click here to see my signature: Spoiler ALWAYS GOOD TO READ: Forum Rules Forum Etiquette
yasha Posted November 20, 2018 Author Posted November 20, 2018 @careca sorry about that i was panicking for various reasons . @FrancescoDiMuro i want to trace the progress of my auto it program so that it shows something like 1 of 20 65% or 1 of 1 30% depending on what i choose. it is a very long program there are some variables that would need replacing if you want to run Baan Reports.au3
FrancescoDiMuro Posted November 20, 2018 Posted November 20, 2018 @yasha You could do something like this (with a little animation either): Global $intNumberOfProcess = 3, _ $strDots = "." ProgressOn("", "", "", Default, Default, $DLG_MOVEABLE) For $i = 1 To $intNumberOfProcess Step 1 For $j = 10 To 100 Step 10 ProgressSet($j, "Process " & $i & " of " & $intNumberOfProcess & " - " & $j & "% completed.", _ "Installing Software" & $strDots) $strDots &= "." If StringLen($strDots) = 4 Then $strDots = "" Sleep(1000) Next Next ProgressOff() yasha 1 Click here to see my signature: Spoiler ALWAYS GOOD TO READ: Forum Rules Forum Etiquette
yasha Posted November 20, 2018 Author Posted November 20, 2018 @FrancescoDiMuro thank you so sorry to disturb you like that
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