Jump to content

Recommended Posts

Posted

I want to do a Do While RunWait...

Is this possible.....

Because what I want to do is call a program and while the program runs do a splash screen

Which is why I want to have something like

Do While RunWait (not finished)

SplashOn("Message")

End

Can anyone tell me if this can be done.........

Cheers..........

Posted (edited)

RunWait is a block against your script continuing so use Run instead perhaps.

I see no use in a loop by what you describe so maybe this may suit?

$pid = Run( ... )
; SplashOn("Message")
ProcessWaitClose($pid)
; SplashOff()

Commented code for you to establish.

;)

Edited by MHz

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
×
×
  • Create New...