word = textBox1.Text;
Process myprocess = new Process();
myprocess.StartInfo.FileName = @"C:\Users\Public\Desktop\Cambridge Advanced Learner's Dictionary - 3rd Edition.lnk";
myprocess.Start();
I'm trying to automate a 3rd party app using c# code. I know how to invoke the main window of the app through code using something like this..
but I dont know how to take control of its child windows and its different options and how to send the value of word to its child windows.