Hi folker,
There is a problem with syntax in ur code which is
====================
Below is the correct syntax of do loop...
Regards,
Ankesh
so ur code should be something like...
I hope this will work.
There is a problem with syntax in ur code which is
Code:
Do Until oSnag.IsCaptureDone
Loop
Set oSnag=Nothing
Set objShell=Nothing
====================
Below is the correct syntax of do loop...
Code:
Do { While | Until } condition
[ statements ]
[ Exit Do ]
[ statements ]
Loop
-or-
Do
[ statements ]
[ Exit Do ]
[ statements ]
Loop { While | Until } condition
Regards,
Ankesh
so ur code should be something like...
Code:
Do Until oSnag.IsCaptureDone
Set oSnag=Nothing
Set objShell=Nothing
Loop
I hope this will work.