Child panel exceeds parent panel's bounds.

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Hello all,
Is it possible and if it is how do i allow a child panel to
exceed it's parent panel's bounds? ( Essentially appearing to overlap it's
parent.). Currently all controls within a panel appear clipped at the
parent's edges.
Thank you for any help.
 
Eric Cadwell said:
Check out vbaccelerator.com. You have to make the child control a top
level
window. This is usually only done for pop-up controls and such.

If you need to child to be constantly visible, you'll need to listen to
the
WndProc of the parent container and detect sizing and moving - a bit more
complex.

http://www.vbaccelerator.com/home/NET/Code/Controls/Popup_Windows/index.asp

HTH;
Eric Cadwell
http://www.origincontrols.com

Thanks for the help. I was expecting to be able to set a simple property. Oh
well.
 
Back
Top