I can create a new form, set the IsMdiParent = True, then add an UltraFormManager component to manage the appearance of the form.
However, when I try to add an UltraToolbarsManager to the form, I get the message indicating that the DockWithinContainer can not be set as dock areas have already been added. How do I add a toolbar or is this not possible? (I can't find anything anywhere that references this)
Thanks,
Dave
Hello dwdavies,
You can't have both the FormManager and the ToolbarsManager on the same form because the FormManager is a subset of the ToolbarsManager. To style the border of the form using the UltraToolbarsManager, set the FormDisplayStyle of the UltraToolbarsManager to either RoundedFixed or RoundedSizable.
Hi Dave,
Thanks for that - that works perfectly.
Regards,