Im trying to open up an internet explorer browser at a specific url,
easy you say? well perhaps, but each browser window needs a different session/cookie and this code:
Code:
Dim objIE As InternetExplorer
Set objIE = New InternetExplorer

objIE.Visible = True
objIE.Navigate2 "http://www.vbforums.com"

Do While objIE.Busy = True
    DoEvents
Loop

MsgBox objIE.Document.URL

Set objIE = Nothing
Doesnt work
i also want to be able to grab the status of the browser and display its location/value in a label, is this possible? or am i just completely mental? also is it possible too look for specific text in source code? lol, i havent seen any code like it in the code bank, if someone could point me to one that be great
Thanks Alot For Your Help :'-(