visual studio the change of stop and go buttons:
is it possible to change the refresh and stop buttons from showing when a
page is loading? so when a page is loaing, the stop button appears, and
when the page is loaded, the refresh button appears, like in internet
explorer.
i think its a little bit in this way:
Private Sub WebBrowser_ProgressChanged(sender As Object, e As
WebBrowserProgressChangedEventArgs) Handles WebBrowser.ProgressChanged
If comProgressBar.Visible Then
BtnRefresh.Hide()
BtnStop.show() else BtnRefresh.Show()
BtnStop.Hide()
End If
End Sub
No comments:
Post a Comment