Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.30 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Using VBA to send url to an active IE window
  2. Set ie = New InternetExplorer
  3.  
  4. ie.Navigate "http://url"
  5.  
  6. 'Loop until ie page is fully loaded
  7. Do Until ie.ReadyState = READYSTATE_COMPLETE
  8. Loop
  9.  
  10. ie.Visible = True
  11.        
  12. Set ie = New InternetExplorer
  13.        
  14. Set ie = IE WINDOW WITH THIS TITLE.... or something similar?