Is it possible to pint and click from with VBA

  • Thread starter Thread starter kurb
  • Start date Start date
K

kurb

Hello

Is it at all possible to point and click toolbar for within Excel VBA.
This is for a commercial Excel add-in application (don't have access the
VBA program). What I want to do is activate these functions from within
my own Userform.

Thaks
K
 
Not point and click, but if it is a VBA add-in, you could try this

With Application.CommandBars("Standard").Controls("xxx")
Application.Run .OnAction
End With

where xxx is the toolbar button caption

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top