Synchronous vs. Asynchronous. In the context of the XmlHttpRequest object, when you use Synchronousrequests, the request is carried out in line with the process that called it, and everything waits on it to complete. Asynchronous requests, however, once submitted, don't wait on a response. A listener is set up to listen for the response, but the execution of the code doesn't stop and wait for it.
To update on new Automation Techniques using Excel,Ms Access, SQL Server, Power BI and ASP.Net
Thursday, October 18, 2012
Tuesday, October 16, 2012
Get URL/Win Explorer from Web Browser
Sub GetOpenWindowsList()
Dim SWs As New SHDocVw.ShellWindows
Dim IE As SHDocVw.InternetExplorer
For Each IE In SWs
'MsgBox IE.LocationName
'below mentioned line retrieves URL/Explorer from Internet Explorer
MsgBox IE.LocationURL
Next IE
End Sub
Tuesday, October 9, 2012
MSXML2.XMLHTTP Application in VBA
It's an utlity to retrieve info from Amazon(US/UK) based on MSXML Services from Microsoft.
Benefits of this model:
1.Comparatively faster
2.Stand Alone Application
3.No Limit on no. of ISBN
4.Doen't get interrupted when a wrong ISBN encountered
5.Start/Stop at your will.
https://docs.google.com/open?id=0B23eJ2xd9ODyTjJNc1NaLVlQemM
Subscribe to:
Posts (Atom)