I have two desktop applications. After closing the first application, the first application will start the second application.
How do I start the second application after finishing first application?
My first application creates a separate desktop.
Use the Process class when you are exiting your first application.
var p = new Process(); p.StartInfo.FileName = "notepad.exe"; // just for example, you can use yours. p.Start();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With