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

  1. *|Start FN.........
  2. DEF FN.........( window_handle% )
  3.  
  4. REM Called when the pointer leaves a window which has a 'PointerLeaving'
  5. REM event attached
  6. REM window_handle% - window that the pointer has left
  7.  
  8. REM the returned value of this function is ignored
  9.  
  10. LOCAL
  11.  
  12. REM Normally you would reset the shape of the pointer at this point with
  13. REM a call to PROCshell_PointerResetShape
  14.  
  15. = 0
  16. :
  17. *|Stop FN.........