how to view code behind access97 custom menus

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

working with a access97 database with custom menus
I would like to see the code behind these menus
Is there any way to do this

tia
dk
 
working with a access97 database with custom menus.
I would like to see the code behind these menus.
Is there any way to do this?

tia,
dk

Right click the menu and select Customize. Right click the menu
control and select Properties (at the bottom). The On Action property
should contain the function that is called by the toolbar control.

- Jim
 
in the OnAction property, there is code tha
show rpt("Contract Detail")
but there is no report , form or table called Contract Detail
Any ideas

tia
dk
 
in the OnAction property, there is code that
show rpt("Contract Detail"),
but there is no report , form or table called Contract Detail.
Any ideas?

tia,
dk

That looks like a function. Try this: copy it and paste it into the
debug window. (to open the debug window press {Ctrl} {g}). Now hilight
the function name "rpt" and then right click on it. A context window
will open; select Definition from it and you will be taken to the
module that contains the code.

- Jim
 
Back
Top