private void btnRun_Click(object sender, RoutedEventArgs e)
{
Process p = new Process();
p.StartInfo = new ProcessStartInfo("c://WPFApplication1.exe");
p.Start();
}
I start the other application from my application using this; but I want to go to a particular form. Is it possible?
Yes, use a command line argument when you start the process:
Then in the target project, retrieve the command line argument in *Application_Startup*, and open the form: