Launching Programs Or Files From Your Application
In .NET it’s much simpler. Simply use the following code:
C#
try
{
System.Diagnostics.Process.Start(@"c:\mywebpage.html");
}
catch
{}
VB
Try
System.Diagnostics.Process.Start("c:\mywebpage.html")
Catch
End Try
11/27/2007 4:20:41 AM
Category
.Net Tips
Back