How do I open a URL using the computer's default browser in VB .NET?
I have searched on the internet and found:
Dim URL As String = "http://www.google.com/"
Process.Start(URL)
Or just:
Procecss.Start("google.com")
But all these are not working. For these 2, it says "system cannot find path specified"
I am using Visual Studio Community 2019