From:                   li jidong <[EMAIL PROTECTED]>

> Here's it:
> system("..........");  #(it takes quite a while)
> Location: URL
> 
> How can I let system() finish its work and then go to
> the URL?

system() usualy waits for the process to complete. If it doesnt in 
your case and you happen to run the script on windows you'll 
probably want to consider either

        system("start /wait TheProgram");

or

        use Win32::Process;
        ...

Jenda

=========== [EMAIL PROTECTED] == http://Jenda.Krynicky.cz ==========
There is a reason for living. There must be. I've seen it somewhere.
It's just that in the mess on my table ... and in my brain.
I can't find it.
                                        --- me

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to