theonetrueace
Apr 17th, 2002, 02:21 PM
wuts the code to shell out to the defualt browser to a url?
Shawn N
Apr 17th, 2002, 04:20 PM
Dim pcsInfo As New ProcessStartInfo("http://www.sopon.net")
pcsInfo.UseShellExecute = True
pcsInfo.WindowStyle = ProcessWindowStyle.Maximized
pcsInfo.CreateNoWindow = True
Dim proc As Process = Process.Start(pcsInfo)