home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / basic / eventshell / Tools / !EvntEdit / UserFNs / ClickMen < prev    next >
Encoding:
Text File  |  1995-12-23  |  429 b   |  17 lines

  1. *|Start FN.........
  2. DEF FN.........( window_handle%, icon_handle% )
  3.  
  4. REM Called when a MENU mouse click is detected and a 'MenuMaker'
  5. REM event has been attached
  6. REM window_handle% - window over which the click event occured
  7. REM icon_handle%   - icon   over which the click event occured
  8.  
  9. REM the returned value of this function is ignored
  10.  
  11. LOCAL
  12.  
  13. REM perform any shading or ticking of menu items here..
  14.  
  15. = 0
  16. :
  17. *|Stop FN.........