Archive for Agosto 25th, 2008

open file in system using dotnet

CodeKeep C# Feed Agosto 25th, 2008

Description: open file in system using dotnet

Link: http://www.codekeep.net/snippets/11821967-f698-4697-bdc9-c20a02f17de9.aspx

System.Diagnostics.Process.Start(<File Path>);

Access run mode of operating system using dotnet.

CodeKeep C# Feed Agosto 25th, 2008

Description: Access run mode of operating system using dotnet.

Link: http://www.codekeep.net/snippets/3950f64b-a9eb-4363-beb2-f8b0b49dac39.aspx

to open Calculator of OS
-------------------------
System.Diagnostics.Process.Start("calc");

to open Command prompt using dotnet
------------------------------------
System.Diagnostics.Process.Start("cmd");


Similarly just replacing the string in start
we can access Components of operating system
, Which are opened from Run Mode