Click to See Complete Forum and Search --> : Child windows' messages.


brytison
April 25th, 2005, 02:36 AM
i created many child windows on a parent window. And, the value of WNDCLASSEX.style=0, but i found that i must send the messages to child windows one by one(because their style=0), it's so boresome, any other way?

my mean's, i want the child windows can notify itself automatically, NOT need send the WM_XXX to them at PARENT window.

Hope your great help.

SuperKoko
April 27th, 2005, 06:17 PM
If you want to notify all the child windows from the parent window, you can use the EnumChildWindows function, and send the message to all the child windows.
Maybe it can help you!