how handle all the child window messages with parent window handlers
A:
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.
EricSchaefer
2009-10-31 15:56:52