1

ProdTable form, Production Order tab, Process group, Start.

Looking through the form designer, I can find the MenuItem in the DesignList, but the methods are empty. Where can I see which code is being executed?

Tom Studee
  • 10,316
  • 4
  • 38
  • 42

1 Answers1

1
  • Right click the button in the Design List, and click Properties

  • Note the properties MenuItemType (Action) & MenuItemName (ProdStartUpAction)

  • Back in the AOT, browse to Menu Items and expand Action

  • Find ProdStartUpAction in the list

  • Right click ProdStartUpAction and click Properties

  • Note the properties ObjectType (Class) and Object (ProdMultiSatrtUp)

  • Back in the AOT, browse to Classes

  • Expand the class ProdMultiStartUp - the method the menu item runs is called Main

AnthonyBlake
  • 2,334
  • 1
  • 25
  • 39