Re: Placing URL stored in variable into IE
- From: "Rafael T" <okinawapro@xxxxxxxxxxx>
- Date: Wed, 29 Jun 2005 08:58:09 +0900
If i understood correctly, you would need something like this:
'create IE object
Set objExplorer = WScript.CreateObject("InternetExplorer.Application")
'pass the url instead of the url in quotes place the variable name
objExplorer.Navigate "http://www.msn.com"
'wait for it to load
Do While (objExplorer.Busy)
Wscript.Sleep 200
Loop
'show the explorer window
objExplorer.Visible = 1
hope this helps,
RT
"Jig Bhakta" <JigBhakta@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:82FF06C4-E1D7-4694-9CA8-8AE4B0228F51@xxxxxxxxxxxxxxxx
> Hi,
>
> I have extracted a URL from a SQL database and it is stored in a variable.
> I now would like to display the URL in an IE browser. How can I do this?
>
> Thanks,
> Jig.
.
- References:
- Placing URL stored in variable into IE
- From: Jig Bhakta
- Placing URL stored in variable into IE
- Prev by Date: Re: vbs error 800a09b6
- Next by Date: Re: Loop through elements in row of a text file being treated as a Rec
- Previous by thread: Placing URL stored in variable into IE
- Next by thread: Win32_ComputerSystem
- Index(es):
Relevant Pages
|