I would need to write a simple console-type exe which, upon passing a parameter from the command line, starts a URL with the default browser. No problem for the parameter passing, but launching a url puts me in difficulty...
These are some of the code I used, but of course it doesn't work
Imports System
Module Program
Sub Main(args As String())
Dim par() As String = Environment.GetCommandLineArgs()
Process.Start("https://url/Url/Url/" & par(1))
Console.WriteLine(par(1))
End Sub
End Module
.. Thank you
These are some of the code I used, but of course it doesn't work
Imports System
Module Program
Sub Main(args As String())
Dim par() As String = Environment.GetCommandLineArgs()
Process.Start("https://url/Url/Url/" & par(1))
Console.WriteLine(par(1))
End Sub
End Module
.. Thank you