Re: opening network folders

Tech-Archive recommends: Speed Up your PC by fixing your registry

From: Ab (abiheiri_at_hotmail.com)
Date: 05/25/04


Date: Tue, 25 May 2004 19:54:11 -0400

Thanx Guillaume.....the link you posted was what I needed. Good looking out

"Guillaume Belmas" <guillaume_RemoveMe_@3ie.org> wrote in message
news:uog1tVnQEHA.3420@TK2MSFTNGP11.phx.gbl...
> Hello,
>
> Try this:
> http://perso.3ie.org/yannick.lejeune/archives/2004_05_01_blog-programmation-dotnet.html#108550245540379495
>
> --
> Guillaume BELMAS
> Consultant 3IE (http://www.3ie.org)
>
> "Hareth" <abiheiri@hotmail.com> wrote in message
> news:OtDMEEmQEHA.3348@TK2MSFTNGP09.phx.gbl...
> | Ive tried these and many others. none of them worked out. How does
> someone
> | usaully open a network folder (the simplest way possible)
> |
> | System.Diagnostics.Process proc = new System.Diagnostics.Process();
> | proc.EnableRaisingEvents = false;
> | proc.StartInfo.FileName = \\computername;
> | proc.StartInfo.Arguments = "";
> | proc.Start();
> | proc.WaitForExit();
> | ----------------------------------------
> | System.Diagnostics.Process proc = new System.Diagnostics.Process();
> | proc.EnableRaisingEvents = false;
> | proc.StartInfo.FileName = computername;
> | proc.StartInfo.Arguments = "\\computername";
> | proc.Start();
> | proc.WaitForExit();
> |
> |
> |
> |
> |
> | "Nicholas Paldino [.NET/C# MVP]" <mvp@spam.guard.caspershouse.com> wrote
> in
> | message news:OBooctlQEHA.1340@TK2MSFTNGP12.phx.gbl...
> | > Hareth,
> | >
> | > You should probably set the FileName property to the network path
> that
> | > you want to browse.
> | >
> | > Hope this helps.
> | >
> | >
> | > --
> | > - Nicholas Paldino [.NET/C# MVP]
> | > - mvp@spam.guard.caspershouse.com
> | >
> | > "Hareth" <abiheiri@hotmail.com> wrote in message
> | > news:%23nNs3sjQEHA.3012@tk2msftngp13.phx.gbl...
> | >> For C#, to access an internet page i usually type:
> | >>
> | >> System.Diagnostics.Process proc = new
> System.Diagnostics.Process();
> | >> proc.EnableRaisingEvents = false;
> | >> proc.StartInfo.FileName = "iexplore";
> | >> proc.StartInfo.Arguments = "http://www.website.com";
> | >> proc.Start();
> | >> proc.WaitForExit();
> | >>
> | >> I tried doing this for a network share, but it doesnt work....can
> someone
> | >> tell me a fast code like this one.
> | >>
> | >>
> | >>
> | >
> | >
> |
> |
>
>