Hi Everyone, I'm new to the group and been programming in VB6 so a few weeks now and have a question :-
I have the Routine below, so that when a button is clicked, X amount of Internet Explorer Windows opens.
------------------------------------------------------
Private Sub Command1_Click(Index As Integer)
For x = 1 To Text1
IE(x) = Shell("C:\PROGRAM FILES\INTERNET EXPLORER\iexplore.EXE", 1)
Next x
End If
End Sub
-------------------------------------------------------
So if you type 5 into Text1 field, 5 IE windows Opens. Now I can switch between these windows using the :-
AppActivate IE(x)
The bit I'm struggling with is interacting with these windows. I'm not asking for someone to write the routine but would like to be pointed in the right direction to do the following :-
When 1 of these windows is clicked, it obviousley brings up a new page. How do I tell VB to look for certain information on that new page, and if found, load a new page in that same window? Someone mentioned I need to get into the World of Windows API's to do this, so just some general pointers in the right direction would be appreciated.
Thanks
Zacko
I have the Routine below, so that when a button is clicked, X amount of Internet Explorer Windows opens.
------------------------------------------------------
Private Sub Command1_Click(Index As Integer)
For x = 1 To Text1
IE(x) = Shell("C:\PROGRAM FILES\INTERNET EXPLORER\iexplore.EXE", 1)
Next x
End If
End Sub
-------------------------------------------------------
So if you type 5 into Text1 field, 5 IE windows Opens. Now I can switch between these windows using the :-
AppActivate IE(x)
The bit I'm struggling with is interacting with these windows. I'm not asking for someone to write the routine but would like to be pointed in the right direction to do the following :-
When 1 of these windows is clicked, it obviousley brings up a new page. How do I tell VB to look for certain information on that new page, and if found, load a new page in that same window? Someone mentioned I need to get into the World of Windows API's to do this, so just some general pointers in the right direction would be appreciated.
Thanks
Zacko