tags:

views:

152

answers:

1

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