Changes between Version 9 and Version 10 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/ExitWithCode


Ignore:
Timestamp:
10/02/20 07:47:17 (4 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/ExitWithCode

    v9 v10  
    1515== Remarks ==
    1616
    17 ExitWithCode cannot exit the form immediately but sets an internal flag value to cause the Form to exit upon the next iteration of the form run loop. If a form done event is specified it will be called just before the form exit with flag FORM_DONE_EVENT_EXTERNAL. This is to allow the form done event to know that the form was ended by code rather than a user action upon the form. The form done event may call !GetExitCode to determine what the return code will be. If the form done event returns non-zero the form exit will be cancelled.
     17ExitWithCode cannot exit the form immediately but sets an internal flag value to cause the Form to exit upon the next iteration of the form run loop. If a form done event is specified it will be called just before the form exit with flag FORM_DONE_EVENT_EXTERNAL. This is to allow the form done event to know that the form was ended by code rather than a user action upon the form. The form done event may call !GetExitCode to determine what the return code will be. The form done event may return zero to cancel the form exit.
    1818
    1919== Example ==