views:

69

answers:

1

I need to make a control a conainter(that holds other controls at design and run time) similiar a TPanel, without inheriting from the custom panel or a similar control, how do i tell my control that its suppose to contain stuff???

+6  A: 

You need to add the csAcceptsControls style to your control's ControlStyle property. Something like this in the constructor of your control class:

  ControlStyle := ControlStyle + [csAcceptsControls];

You will almost certainly want to set other ControlStyle properties also though so don't just take this verbatim but research the ControlStyle flags and decide which are appropriate in your case.

Deltics