parent window, child window

  • Thread starter Thread starter Piotrek Stachowicz
  • Start date Start date
P

Piotrek Stachowicz

Hi,
I've got two windows: main one (visible in task bar) and, the other one
which is created by main (not visible in task bar). Now, how can I make the
"child" window obey his parent, i.e. when main window is brought to front,
child should also be brought to front, etc.

Thx,
Piotrek Stachowicz
 
Hi,

You should either properly create the child window upfront, specifying which
window is its parent, or you could set the parent later with the SetParent
API call.
 
Back
Top