Hi Chuck

Ok. This is now fixed in the main project. There are also two new events in the RibbonBar that you can take advantage of:

Code:
    {MethodType=Event}
    Procedure OnTabWorkspaceCreated Handle hoTabWorkspace
    End_Procedure 
    
    {MethodType=Event}
    Procedure OnSetTabPaintManagerProperties Handle hoTabPaintManager
    End_Procedure
Both of these are available if you want to tweak any of the settings of the TabWorkspace or the TabPaintManager.

So just as an example, in a little test project I'm currently working with I have coded these to be:

Code:
        Procedure OnTabWorkspaceCreated Handle hoTabWorkspace
            Set pbShowCloseSelectedTab of hoTabWorkspace to True
            Set pbEnableGroups of hoTabWorkspace to True
        End_Procedure
        
        Procedure OnSetTabPaintManagerProperties Handle hoTabPaintManager
            Set ComFillBackground of hoTabPaintManager to True 
            Set ComShowIcons      of hoTabPaintManager to False
            Set ComLayout         of hoTabPaintManager to xtpTabLayoutMultiRow
            Set ComColor          of hoTabPaintManager to xtpTabColorOffice2007
            Set ComAppearance     of hoTabPaintManager to xtpTabAppearancePropertyPage2007 
        End_Procedure