Thanks Trent, you point me in the right direction, the .net toolbars are a little complicatted and a little more the devexpress one :/ I see that devexpress stuff is sometimes over complicated...
I created another bar in the MaintenanceFormBarManager1 on my "base class" form and put on it needed buttons, and on the new() constructor of this I put:'bars(0) is the Devexpress SF maintenance toolbar, I don't like to use whole row...
Me.MaintenanceFormBarManager1.Bars(0).OptionsBar.UseWholeRow = False
'The dockcol, dockrow and offset properties don't appears on the designer, but I see it with the savelayout method on the barmanager.........I save 2 xml, 1 before and 1 after change things... and compare them.
'Dim fileName As String = "c:\XtraBars_test.xml"
'Me.MaintenanceFormBarManager1.SaveLayoutToXml(fileName)
With myAnotherToolbar
.DockCol = 1
.DockRow = 0
.Offset = 366
End With
I change the private to public modifier on MaintenanceFormBarManager1 to allow me later to add new bars in runtime to the same manager (via code, the designer on the subclassed form put this on read only mode) and then I can create new bars, with new buttons and add this to the manager :/ (not tested yet)
I not found a better solution... but this seems that will work thanks for your great help.