joerobbins
Programmer
This may be a dumb question ... but
When creating an EXE from a VB Project is it possible to add Office Commandbars to the root form?
I've added Microsoft Office to the Project References and that all looks fine.
I'm familiar with customising Commandbars in VBA for Access, but I can't figure out the equivalent to:
Is there some trick to getting a reference to (the equivalent of) "Application.CommandBars"
Or is VB6 stuck with the original (simple) Tools --> Menu Editor style?
Any tips appreciated!
When creating an EXE from a VB Project is it possible to add Office Commandbars to the root form?
I've added Microsoft Office to the Project References and that all looks fine.
I'm familiar with customising Commandbars in VBA for Access, but I can't figure out the equivalent to:
Code:
Set MenuCommandBar = CommandBars.Add("BCS_Menubar", msoBarTop, True, True)
Is there some trick to getting a reference to (the equivalent of) "Application.CommandBars"
Or is VB6 stuck with the original (simple) Tools --> Menu Editor style?
Any tips appreciated!