home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / basic / eventshell / Tools / !EvntEdit / UserFNs / WinClose < prev   
Encoding:
Text File  |  1996-01-20  |  256 b   |  14 lines

  1. *|Start FN.........
  2. DEF FN.........( window_handle% )
  3.  
  4. REM Called when a window is about to close
  5. REM window_handle% - window that is closing
  6.  
  7. LOCAL
  8.  
  9. REM Return FALSE to prevent the window closing, TRUE
  10. REM to allow it to close
  11.  
  12. = TRUE
  13. :
  14. *|Stop FN.........