A
Anil Gupte/iCinema.com
Sorry reposting for clarity...
Which one is better? This:
System.Diagnostics.Process.Start(URL)
or this?
Dim psi As New ProcessStartInfo()
psi.UseShellExecute = True
psi.FileName = URL
Process.Start(psi)
And why?
Regards,
Which one is better? This:
System.Diagnostics.Process.Start(URL)
or this?
Dim psi As New ProcessStartInfo()
psi.UseShellExecute = True
psi.FileName = URL
Process.Start(psi)
And why?
Regards,