Jump to content

GUI updates based on RunWait status guidance


apex52
 Share

Recommended Posts

Hello all, I am hoping someone could point me in the right direction with a simple hello world type script. What I would like to do is have a GUI which does the following:

GUI opens and states that a process is running based off of RunWait.

GUI updates stating that process is complete when RunWait reports process is no longer running.

GUI continues and watches a new process start and close and updates that status message.

I would like to do this without the GUI closing.

Running app1... Complete

Running apps2...Complete

Link to comment
Share on other sites

Have you started on the script? If so, please supply us with your code so we can give you some pointers.

As for the GUI closing, I would assume it is because it has run out of script to execute. Place this at the end of your code and hopefully it will do the job for you.

While 1
    If GuiGetMsg() = -3 Then;If the exit button is clicked
        Exit
    EndIf
WEnd
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...