I have this code and it opens the my documents accordingly. but the problem is it is below my application i want it above my main form
String path = @"C:\Users\Diether\Documents";
System.Diagnostics.Process prc = new System.Diagnostics.Process();
prc.StartInfo.FileName = path;
prc.Start();