The following example uses the
sysNotification(eventType: Integer; theObject: Object; eventTag: Integer) updating; begin if eventType = Object_Create_Event then // new product self.loadTable; endif; end;
The following example, from the Erewhon Investments example schema supplied on the JADE release medium, shows a
sysNotify(eventType: Integer; theObject: Object; eventTag: Integer) updating; begin app.mousePointer := Busy; zSynchronizeForm(eventType, theObject, eventTag, null); epilog app.mousePointer := Idle; end;