I'm using
System.Diagnostics.Process.Start("explorer", Application.StartupPath);
To open the applications path with a button press, but the window opens behind my application, how can I get it on top?
I'm using
System.Diagnostics.Process.Start("explorer", Application.StartupPath);
To open the applications path with a button press, but the window opens behind my application, how can I get it on top?
It may be due to TopMost property of the form may be true, or any of the properties of the form is making your application to stay on top. Just try to change the form properties and you will get the required result