The objective is to programmatically start a Windows Form, get its handle, and send info to its wndProc() function using Win Api's SendMessage() function.
I got the SendMessage() part taken care of but the problem now is getting the form's handle after the process has been started.
My first guess was that Process' MainWindowHandle property would get me the handle I am looking for, but after I start the process MainWindowHandle remains equal to 0 and the following code doesn't show the handle of the process I just started:
foreach (Process p in Process.GetProcesses())
{
Console.WriteLine(p.MainWindowHandle);
}
Can someone tell me how to do this and whether it can actually be done?
Thread.Sleep(3000);after starting the process, see if the result is any different. Also, what process are you starting? Does it even have a window? – Yorye Nathan Jun 3 '12 at 2:45Thread.Sleep(100);as well. No need to wait all that long. – Yorye Nathan Jun 3 '12 at 3:31