1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
|
Object oOrderEntryMenuItem is a cCJMenuItem
Set psCaption to "Order Entry"
Set psShortcut to "Ctrl+3"
Set psDescription to "Add, edit and delete Order data."
Set psToolTip to "Order Entry"
Procedure OnExecute Variant vCommandBarControl
Handle hoClient
Get Client_Id to hoClient
Send Activate_OrderEntryView of hoClient
Send popup to (oOrderEntryView(hoClient)) //so ist es richtig
// Send popup to (oOrderEntryView(self)) //hatte bloss "self" hingeschrieben
End_Procedure
End_Object |