User Tools

Site Tools


takecloseevent_a_virtual_to_process_event_closewindow_.htm
Navigation:  ABC Library Reference > ReportManager Class > ReportManager Methods >====== TakeCloseEvent (a virtual to process EVENT:CloseWindow) C6H0009.jpg ====== Previous pageReturn to chapter overviewNext page

TakeCloseEvent, VIRTUAL, PROC

blk2blue.jpg

The TakeCloseEvent method handles EVENT:CloseWindow for the ReportManager and returns a value indicating whether window ACCEPT loop processing is complete and should stop.

TakeCloseEvent returns returns Level:Benign to indicate processing of this event should continue normally; it returns Level:Notify to indicate processing is completed for this event and the ACCEPT loop should CYCLE; it returns Level:Fatal to indicate the event could not be processed and the ACCEPT loop should BREAK.

Member of: ReportManager

Implementation:

The TakeEvent method calls the TakeCloseEvent method. The TakeCloseEvent method calls the AskPreview method to preview or print the report, then closes the report.

Return Data Type:     BYTE

Example:

MyWindowManager.TakeEvent PROCEDURE

Rval BYTE(Level:Benign)

I   USHORT,AUTO

 CODE

IF ~FIELD()

 RVal = SELF.TakeWindowEvent()

 IF RVal THEN RETURN RVal.

END

CASE EVENT()

OF EVENT:Accepted;   RVal = SELF.TakeAccepted()

OF EVENT:Rejected;   RVal = SELF.TakeRejected()

OF EVENT:Selected;   RVal = SELF.TakeSelected()

OF EVENT:NewSelection; RVal = SELF.TakeNewSelection()

OF EVENT:Completed;   RVal = SELF.TakeCompleted()

OF EVENT:CloseWindow OROF EVENT:CloseDown

 RVal = SELF.TakeCloseEvent()

END

IF RVal THEN RETURN RVal.

IF FIELD()

 RVal = SELF.TakeFieldEvent()

END

RETURN RVal

See Also:     AskPreview, WindowManager.TakeEvent

takecloseevent_a_virtual_to_process_event_closewindow_.htm.txt · Last modified: 2021/04/15 15:57 by 127.0.0.1