Hello!

I am trying to enter information into a userform that belongs to an excel addin that I do not have access to (it is protected). Using commandbars, I can get the userform to show, but cannot do anything with it. I simply need to check a box and press the "Ok" button. The code I have so far looks like this:

Sub Commander ()

Application.CommandBars("CommandBar Name").Controls("Control Name").Controls("SubControl Name").Execute

'Userform appears here but don't have the code to deal with it.

End Sub