Click here to Skip to main content
15,741,083 members

Comments by vblover Programmer (Top 8 by date)

vblover Programmer 26-Jan-23 22:09pm View    
U can Use WebBrowser Control to Navigate.
' Navigates to the URL in the address box when 
' the ENTER key is pressed while the ToolStripTextBox has focus.
Private Sub toolStripTextBox1_KeyDown( _
    ByVal sender As Object, ByVal e As KeyEventArgs) _
    Handles toolStripTextBox1.KeyDown
    If (e.KeyCode = Keys.Enter) Then
        Navigate(toolStripTextBox1.Text)
    End If

End Sub

' Navigates to the URL in the address box when 
' the Go button is clicked.
Private Sub goButton_Click( _
    ByVal sender As Object, ByVal e As EventArgs) _
    Handles goButton.Click

    Navigate(toolStripTextBox1.Text)
End Sub
' Navigates to the given URL if it is valid.
Private Sub Navigate(ByVal address As String)
    If String.IsNullOrEmpty(address) Then Return
    If address.Equals("about:blank") Then Return
    If Not address.StartsWith("http://") And _
        Not address.StartsWith("https://") Then
        address = "http://" & address
    End If
    Try
        webBrowser1.Navigate(New Uri(address))
    Catch ex As System.UriFormatException
        Return
    End Try
End Sub
' Updates the URL in TextBoxAddress upon navigation.
Private Sub webBrowser1_Navigated(ByVal sender As Object, _
    ByVal e As WebBrowserNavigatedEventArgs) _
    Handles webBrowser1.Navigated
    toolStripTextBox1.Text = webBrowser1.Url.ToString()
End Sub

https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.webbrowser?view=windowsdesktop-7.0
vblover Programmer 10-Jan-23 1:27am View    
What's that Error, so.
vblover Programmer 8-Dec-22 10:27am View    
U can Use New constructor of Bitmap Class to set Ur Image and Size of thet:
Bitmap(Image, Int32, Int32)

See Bitmap Class topic to more information about Bitmap Class
vblover Programmer 8-Dec-22 7:57am View    
That Popup-Menu Loaded from Resource Dll and I just have Handle of that.