Send Click Message to another application process
- by Nazar Hussain
I have a scenario, i need to send click events to an independent application. I started that application with the following code.
private Process app;
app = new Process();
app.StartInfo.FileName = app_path;
app.StartInfo.WorkingDirectory = dir_path;
app.Start();
Now i want to send Mouse click message to that applicaiton, I have specific…