You need to check the Inet StateChanged event, or call the StillExecuting function to check if it's done.

Something like this

Code:
'exec 1
Do While Inet1.StillExecuting
    DoEvents
    Sleep 50
Loop

'exec2 ...
(you need to declare the Sleep API)