Home > Net >  Opening URL inside visual basic form
Opening URL inside visual basic form

Time:12-10

I would like to open webpage in VB form, however in ToolBox, there is missing WebBrowser. Could someone help me, where is the problem? I am creating project

enter image description here

In list of tools there is nothing with

enter image description here

CodePudding user response:

Are you sure you are using the correct windows forms? enter image description here

CodePudding user response:

Since you cannot use webview in win forms anymore. Please try this code :)

Dim webAddress As String = "http://www.example.com/" \
Process.Start(webAddress)
  • Related