You can include Explorerbars inside a Ribbonbar.
1. use a oversized Ribbonbar-height to design the Explorerbar.
2. resize the Ribbonbar. The Explorerbar shows a vertical Scrollbar.
Design-mode :
Final height :
DEFINE RIBBONBAR oRBar WINDOW oWnd PROMPT "Configuración", "Ficheros", "Informes", "Ayudas" HEIGHT
150 TOPMARGIN 25
...
...
// --------- 7 Explorerbar --------------
ADD GROUP oGr6 RIBBON oRBar TO OPTION 1 PROMPT "VTitle" WIDTH 150
oExBar1 = TExplorerBar():New( -5, 0, 145,
115, oGr6 ) // Width, Height
oExBar1:oFont := oFont2
oPanel1 = oExBar1:AddPanel( "One", ".\bitmaps\32x32\notes.bmp", 80 ) // Height
oPanel1:lSpecial = .T.
oPanel1:oFont := oFont2
oPanel1:AddLink( "First", bClick, ".\bitmaps\32x32\fax.bmp",
10, 40, oFont2 ) // Added from Silvio
oPanel1:AddLink( "Second", bClick, ".\bitmaps\32x32\edit.bmp", 15, 40, oFont2 )
oPanel2 = oExBar1:AddPanel( "Two", ".\bitmaps\32x32\notes.bmp", 80 ) // Height
oPanel2:lSpecial = .T.
oPanel2:oFont := oFont2
oPanel2:AddLink( "Third", bClick, ".\bitmaps\32x32\keys.bmp", 10, 40, oFont2 )
oPanel2:AddLink( "Fourth", bClick, ".\bitmaps\32x32\magic.bmp", 15, 40, oFont2 )
oPanel2:Move( 140 )
oPanel3 = oExBar1:AddPanel( "Three", ".\bitmaps\32x32\notes.bmp", 80 ) // Height
oPanel3:lSpecial = .T.
oPanel3:oFont := oFont2
oPanel3:AddLink( "Third", bClick, ".\bitmaps\32x32\attach.bmp", 10, 40, oFont2 )
oPanel3:AddLink( "Fourth", bClick, ".\bitmaps\32x32\check.bmp", 15, 40, oFont2 )
oPanel3:Move( 265 )
oPanel4 = oExBar1:AddPanel( "Four", ".\bitmaps\32x32\notes.bmp", 80 ) // Height
oPanel4:lSpecial = .T.
oPanel4:oFont := oFont2
oPanel4:AddLink( "First", bClick, ".\bitmaps\32x32\graphics.bmp", 10, 40, oFont2 )
oPanel4:AddLink( "Second", bClick, ".\bitmaps\32x32\screen.bmp", 15, 40, oFont2 )
oPanel4:Move( 390 )
Best Regards
Uwe