hi friends..
i will open the c drive through my application. if i click the button means c drive will opened. but my query is i want open the c drive but it should be placed in taskbar... that is when i click c drive then only it is maximized..
how to do that in c#..
i need coding for that..
thanx..
Loading
Jan MontanoPosted Dec 29, 2008, 1:15 AM
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "explorer";
proc.StartInfo.WindowStyle = ProcessWindowStyle.Minimized;
proc.Start();