Oh I'm not a serious programmer and have the following problem with new instances of Internet Explorer.
Here's my code :
Dim IE1 As New InternetExplorer
Dim IE2 As New InternetExplorer
Private Sub Command1_Click()
IE1.ToolBar = False
IE1.MenuBar = False
IE2.ToolBar = False
IE2.MenuBar = False
IE1.Navigate "IE2.Navigate "End Sub
Now two internet explorer windows pop up and display a grid with a number to click. The trouble is, both the numbers are the same in each window. One of them is correct, and the other seems to be cached or something cause I get a misclick when I click it. How can I solve it so that each page is a complete fresh load, with its own cookie? Is this possible.
Many Thanks in advance.
Zacko
Here's my code :
Dim IE1 As New InternetExplorer
Dim IE2 As New InternetExplorer
Private Sub Command1_Click()
IE1.ToolBar = False
IE1.MenuBar = False
IE2.ToolBar = False
IE2.MenuBar = False
IE1.Navigate "IE2.Navigate "End Sub
Now two internet explorer windows pop up and display a grid with a number to click. The trouble is, both the numbers are the same in each window. One of them is correct, and the other seems to be cached or something cause I get a misclick when I click it. How can I solve it so that each page is a complete fresh load, with its own cookie? Is this possible.
Many Thanks in advance.
Zacko