menu of available macros

  • Thread starter Thread starter a_d66
  • Start date Start date
A

a_d66

hello,
i want to have a macro that create a new window or a dialog box that
let the user choose between some options.
every one of those options refer to a different macro
thanks
 
You have the name of the macro captured?

dim myMac as string
mymac = "myMacroToRun" 'someway you got this
application.run mymac
 
Back
Top