Jump to content

Creating a process completion window and .exe error


yasha
 Share

Recommended Posts

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

@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:

 

Link to comment
Share on other sites

@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()

:)

Click here to see my signature:

Spoiler

ALWAYS GOOD TO READ:

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...