I wrote an Add-in for the VBA-Editor of MS Access in C# How to write a Add-in for the development enviroment: "Microsoft Visual Basic for Applications"
I already created a toolbar like this:
var toolbar = m_VBE.CommandBars.Add(RadToolbarCaption, MsoBarPosition.msoBarTop, System.Type.Missing, true);
Now I need a CheckBox or a PushButton (a control which represents a true/false state) in the toolbar
But it seems like there is no checkBox in MsoControlType and I did not find a way to make a Button 'pushable'.
Is there a way to add a CheckBox (or another control which provides the same functionality) to the menubar?