PreviousNext
MenuItemFinalize
Help > Custom DPA Handler > Events > MenuItemFinalize

This event is raised only at TR-7xG [N] when a previously selected menu item from Online or ReadyToBond DPA Menu is to be finalized. The userReg1 variable at the entry contains menu and menu item, that was previously selected. If the user item is implemented in the Custom DPA Handler the event must execute the menu action if it was not already executed at MenuItemSelected event.

 

Example

 

case DpaEvent_MenuItemFinalize:

  switch ( userReg1 )

  {

    case MakeDMenuAndItem( DMENU_Online, DMENU_Item_User1 ):

      ExecuteMyUser1MenuItem();

      break;

  }

 

return Carry;

 

See example CustomDpaHandler-DpaMenu for more details.