Link to home
Start Free TrialLog in
Avatar of aplelois
aplelois

asked on

add status bar for web browser

hello,
I would like to add a status bar for my mini web browser
so that when you go to a page it tells you the name and
% of loading just like IE.

I have this but is not working
    Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)

        If Len(Text) Then
            _sbStatus_Panel1("URL").Text = Text
        Else
            _sbStatus_Panel1("URL").Text = WebBrowser1.LocationName
        End If

    End Sub
ASKER CERTIFIED SOLUTION
Avatar of oleggold
oleggold
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial