PROGRESSBAR PARA WEBBROWSER
Ola! Preciso do código para usar o ProgressBar no WebBrowser para mostrar o carregamento das páginas. Por favor, expliquem direitinho qual código vai no ProgressBar e qual vai no Web Browser. Obrigado![txt-size=1] [/txt-size]
Simples assim:
Private Sub WebBrowser1_ProgressChanged(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserProgressChangedEventArgs) Handles WebBrowser1.ProgressChanged
Try
frmPrincipal.ToolStripProgressBar1.Value = CType(((e.CurrentProgress / e.MaximumProgress) * 100), Integer)
Catch ex As Exception
End Try
End Sub
Private Sub WebBrowser1_ProgressChanged(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserProgressChangedEventArgs) Handles WebBrowser1.ProgressChanged
Try
frmPrincipal.ToolStripProgressBar1.Value = CType(((e.CurrentProgress / e.MaximumProgress) * 100), Integer)
Catch ex As Exception
End Try
End Sub
Tópico encerrado , respostas não são mais permitidas