In Access 2003, there was a custom menu created. How can I use VBA to view the details of the menu?
I.E. get a print out of what each option does? (the name, & query it runs) If the custom menu has an option to "Run Daily" and what that does is runs query titled qry_dly
Then I would ideally like to see the VBA output like so Run Daily --> qry_dly
This might need some tweaking, depending on the structure of the menu. but once you get a handle of how this works, you should be able to make changes to it if needed.
First, you need to find out the name of the Custom menu. if you know that already, then skip this step. Else grab the name(s) returned from this:
Then, pass the name of the Custom Menu to this procedure. like i said, depending on the way the menu is setup, this may or may not return everything in it, that is where you may need to customize it: