Window visible in taskbar
Hi All,
Iam working with a ListControl whose parent is a dialog.want to place a tree control on a particular cell on the listcontrol,which on doubleclicking should open up(ie: the width & height of this tree control exceeds the dialog boundary).
Like in ComboBox control, where the list visible, goes beyond the dialog boundary.
Tried somethings like
treeControl.SetOwner(GetDesktopWindow();
treeControl.ModifyStyle(WS_CHILD,WS_OVERLAPPED);
Everything works fine apart from 1 problem.I can see the newly created window(the treecontrol) on my taskbar.
wHAT should I do to avoid that...
Regards,
P
|