I have a ribbon application that has three tabs. On the OnCreate event, I need to check a CheckBox that is not on the tab that is shown when the application opens.
The problem is I can't check that CheckBox. When I open the tab that contains it, the CheckBox is unchecked. What I know is that, because the ribbon is created dynamically, the control I want to access doesn't exist yet.
There is some way to access the CheckBox?
Try checking the control after its creation, (eg) the event where you create the control. Once you create it, you can assign the procedure that will be triggered when clicked and will be checked or not. Hope this helps.