| |
tommytx
Posts: 8
Score: 0
Joined: 6/19/2005
From:
Status: offline
|
What command can I add to force each website to open in the same window, with the code below, each website opens in a new window. The code is below: VBSTART Sub OpenPage(URL,Wait) Dim IE Set IE = CreateObject("InternetExplorer.Application") IE.visible = 1 IE.navigate URL do while IE.Busy and Wait loop End Sub VBEND Let>URL=http://www.vahud.com,1 VBRun>OpenPage,%URL% Wait>30 Let>URL=http://www.beachrealty.com,1 VBRun>OpenPage,%URL% Wait>30 Let>URL=http://www.greerteam.com,1 VBRun>OpenPage,%URL% Wait>30 Thanks Tom
|
|