|
You have to set the ActiveSizer to ActiveBar2's ClientAreaControl before it will work. To do so, you must set the AlignToForm property to True by putting ActiveBar and ActiveSizer in a new form, nesting another ActiveSizer in the main ActiveSizer, and setting the new form as a subform of the main ActiveSizer. See the attached sample for details. 'Activebar should host ActiveSizer 'AutoSizeChildren should be set to true Private Sub Form_Load() ActiveBar21.ClientAreaControl = ActiveSizer1 End Sub
|