Question, I have two applications. I set a doubleclick event on the first one that opens app called employees. I want to copy the data in label1 from application one onto the txtone of the second application and hit the run button.
This is the code i have for opening the 2nd app but i cant figure out how to compile the rest. Any suggestions would be great!
Process Employees= new Process();
Employees.StartInfo.FileName = "F:\\Employees.exe";
Employees.Start();