Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Zacko

  1. Zacko

    Help Needed with IE Form.Submit

    Here's my piece of code and what is should do is this. Basically what will happen is, an IE window will load and show a number to click. When you click the corresponding number, a message box will pop up and tell you what number you clicked (.value). When you click ok, the following command...
  2. Zacko

    How do I handle Cached info in Internet Explorer Control

    Now I've thought about doing this another way using Shell:- Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long)...
  3. Zacko

    How do I handle Cached info in Internet Explorer Control

    Could it be that the two windows are sharing the same cookie? With each Page you load it should have its own cookie, cause the way that site works is, You are only allowed to click the same person once in 24 hours so it does two things. 1) The site logs your IP 2) The site puts a cookie on...
  4. Zacko

    How do I handle Cached info in Internet Explorer Control

    I have tried adding flags but it don't seem to make a difference. Here's the code :- Dim Flag1 as Integer Dim Flag2 as Integer Dim IE1 As New InternetExplorer Dim IE2 As New InternetExplorer Private Sub Command1_Click() Flag1 = 4 Flag2 = 4 IE1.ToolBar = False IE1.MenuBar = False IE2.ToolBar =...
  5. Zacko

    How do I handle Cached info in Internet Explorer Control

    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...
  6. Zacko

    Watching Internet Explorer Windows?

    Many Thanks for the reply, and I have taken note of the F.A.Q Before I start looking into Windows API's, is this the way I want to go to solve my problem? Thanks Zacko
  7. Zacko

    Watching Internet Explorer Windows?

    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...

Part and Inventory Search

Back
Top