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
In list of tools there is nothing with
CodePudding user response:
Are you sure you are using the correct windows forms?
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)