Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I handle all the child window messages with parent window handlers?

share|improve this question
1  
Which system is this question about? Windows and .NET, Unix and X, or something else? – Thomas Padron-McCarthy Oct 31 '09 at 11:22
Vague at best, more details please. And the tagging as well. – o.k.w Oct 31 '09 at 11:25

closed as not a real question by Chathuranga Chandrasekara, KingCrunch, Jack, j0k, Darhazer Aug 28 '12 at 8:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Just in case you are talking about .NET Winforms:

foreach (Control control in Controls) {
    control.Click += myClickHandler;
}

Something similar might work with the super secret system you are using.

share|improve this answer

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