Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
Try doing 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:45
it seems like putting the thread to sleep did the trick. thanks – John Smith Jun 3 '12 at 3:15
2  
You should really work on your acceptance rate. In cases like this, you can add your own answer, for the community to enjoy. By the way, you can probably do Thread.Sleep(100); as well. No need to wait all that long. – Yorye Nathan Jun 3 '12 at 3:31
@YoryeNathan can you put your comment as the answer? – Jeremy Thompson Jun 3 '12 at 4:46
1  
@YoryeNathan when he does become aware of the accept rate and karma when no-one answers his future questions he will be able to improve it as the solution isn't in a comment. Plus two of us were able to upvote the answer:) – Jeremy Thompson Jun 3 '12 at 5:29
show 2 more comments

1 Answer

up vote 6 down vote accepted

Sometimes the Process takes a second the set up everything, but the object is returned immediately.

For that reason, you should wait a little bit, in order to let the Process really get it started, and then it's MainWindowHandle will be set appropriately, ready to be consumed.

var proc = Process.Start("notepad");

Thread.Sleep(1000); // This will wait 1 second

var handle = proc.MainWindowHandle;

Another way to do it in a more smart fashion would be:

var proc = Process.Start("notepad");

try
{
    while (proc.MainWindowHandle == IntPtr.Zero)
    {
        // Discard cached information about the process
        // because MainWindowHandle might be cached.
        proc.Refresh();

        Thread.Sleep(10);
    }

    var handle = proc.MainWindowHandle;
}
catch
{
    // The process has probably exited,
    // so accessing MainWindowHandle threw an exception
}

That will cause the process to start, and wait until the MainWindowHandle isn't empty.

share|improve this answer
actually Yorye, I think I would be remiss if I don't mention that based on my observations, your second approach is not going to work, because, for some reason, if you access MainWindowHandle before it's been initialized, it doesn't get initialized at all, meaning that your while loop will run forever. Why is it this way? I don't know, but try it if you don't believe me. – John Smith Jun 3 '12 at 5:30
3  
@JohnSmith You're right, the information is being cached in the object. Calling the Refresh method discards that cached information, so the next time you access the MainWindowHandle property, it will retrieve it from the actual window, as needed. See update of my post. – Yorye Nathan Jun 3 '12 at 5:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.