R
Ryan Joseph So
What code do i need to use if i want to call my default
web browser from vb.net and mail client?
web browser from vb.net and mail client?
-----Original Message-----
What code do i need to use if i want to call my default
web browser from vb.net and mail client?
.
* "Ryan Joseph So said:What code do i need to use if i want to call my default
web browser from vb.net and mail client?
* "Cor said:A new one
* "Cor said:Imports System.Diagnostics
.
.
.
Dim psi As New ProcessStartInfo()
psi.UseShellExecute = True
psi.FileName = "http://www.mvps.org"
Process.Start(psi)
///
This one, one of the items I never answer but see often.
It is a favorite question to answer by a lot of persons in this group and
this was in an alternate style..