
09-01-2003, 07:38 AM
|
 |
Unashamed geek
Retired Moderator * Expert *
|
|
Join Date: Jul 2003
Location: London, England
Posts: 8,988
|
|
I don't know how you're opening the web page, but if you're using xmlhttp.open, then using async=False will force Excel to wait until the request has been completed, for example like this:
Code:
XMLhttp.Open "POST", strURL, False
|
|