I need to get a string from a website , the site is located on a secure server , when logged on the server creates a session number , I need to capture that number , all the links on the page have it in there url shotcut !
Try using the Internet Transfer Control (MSINET.ocx) in the Project Components list. If you named the ITC Inet1, for instance, you could do the following.
strRawText = Inet1.OpenURL("
This will return the website in the form of raw html text and set it to the specified string variable strRawText. From there, you can search the string for some indicator of the session number and pull the desired info out of the string.
Hope that helps
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.