Example 2: Actions defaults in a form file

ACTION DEFAULTS
  ACTION accept ( COMMENT="Commit order record changes" )
  ACTION cancel ( TEXT="Stop", IMAGE="stop",
                    ACCELERATOR=SHIFT-F2, VALIDATE=NO )
  ACTION print ( COMMENT="Print order information",
                   ACCELERATOR=CONTROL-P, ACCELERATOR2=F5 )
  ACTION zoom1 ( COMMENT="Open items list", CONTEXTMENU=NO )
  ACTION zoom2 ( COMMENT="Open customers list" )
END

TOOLBAR
  ...
  ITEM accept   -- will get the attributes defined in ACTION DEFAULTS
  ITEM cancel   -- will get the attributes defined in ACTION DEFAULTS
  ...
END

TOPMENU
  ...
  COMMAND accept   -- will get the attributes defined in ACTION DEFAULTS
  ...
  COMMAND print ( TEXT="Print order info" ) -- Defines a specific label
  ...
END

LAYOUT
  ...