Hello,

What's the equilevant of VB6 shell funtion in (
Shell(pathname[,windowstyle]) ) .NET framework.

Thanks

Re: Shell Function in .NET by Herfried

Herfried
Mon Jul 14 19:43:05 CDT 2003

Hello,

"Lenny" <nospam@a.com> schrieb:
> What's the equilevant of VB6 shell funtion in (
> Shell(pathname[,windowstyle]) ) .NET framework.

System.Diagnostics.Process.Start

Regards,
Herfried K. Wagner
--
MVP · VB Classic, VB .NET
http://www.mvps.org/dotnet



Re: Shell Function in .NET by Kumar

Kumar
Fri Jul 25 15:05:04 CDT 2003

Hi!

System.Diagnostics namespace has the Process class. Use the Start
method of the same. It has got couple of overloads that might be of
interest to you.

For example:

Process.Start("http://www.wintoolzone.com/");

shall invoke the default system browser and make it navigate to
http://www.wintoolzone.com/


Regards,
Gaurav Khanna
---------------
Microsoft MVP - .NET
WinToolZone - Spelunking Microsoft Technologies
http://www.wintoolzone.com/
OpSupport - Spelunking Rotor
http://opsupport.sscli.net/

On Mon, 14 Jul 2003 20:31:06 -0400, "Lenny" <nospam@a.com> wrote:

>Hello,
>
>What's the equilevant of VB6 shell funtion in (
>Shell(pathname[,windowstyle]) ) .NET framework.
>
>Thanks
>