Results 1 to 3 of 3

Thread: website loading - done

  1. #1

    Thread Starter
    Hyperactive Member theman32x's Avatar
    Join Date
    May 2000
    Location
    New Jersey, USA
    Posts
    305
    what do i have to look for to know when a website is done loading or is still loading using the webcontrol ?

  2. #2
    Fanatic Member
    Join Date
    Jul 2000
    Location
    Manchester NH
    Posts
    833
    Try the BUSY property
    Kurt Simons
    [I know I'm a hack but my clients don't!]

  3. #3
    Guest
    Either...
    Code:
    Private Sub webbrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)
    Label1.Caption = webbrowser1.LocationName
    Label2.Caption = webbrowser1.LocationURL
    End Sub
    
    or
    
    Private Sub WebBrowser1_DownloadComplete()
    Label1.Caption = webbrowser1.LocationName
    Label2.Caption = webbrowser1.LocationURL
    End Sub
    
    or
    
    Private Sub WebBrowser1_NavigateComplete2(ByVal pDisp As Object, URL As Variant)
    Label1.Caption = webbrowser1.LocationName
    Label2.Caption = URL
    End Sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width