VB Code:
  1. Public ie As InternetExplorer
  2. Public ie1
  3.  
  4. OTHER CODE
  5.  
  6. Private Sub Form_Load()
  7. Set ie1 = CreateObject("InternetExplorer.Application")
  8.     ie1.Navigate2 "http://www.kingsofchaos.com/login.php?"
  9.     ie1.Visible = True
  10. End Sub

Whats the event for when ie1 is done loading?
Im fairly sure its simple, Ive just searched about 30-40 threads by now, and I dont know if Ill find it. Sorry for posting a new thread if I skipped over it accidentally

Ive tried
VB Code:
  1. Private Sub ie1_NavigateComplete2()
  2. Private Sub ie1_Navigate2Complete()
  3. Private Sub ie1_NavigateComplete()
  4. Private Sub ie1_Load()
And some others

Thanks for all your help, you guys are fast and smart =P


Bear