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

  1. *|Start FN.........
  2. DEF FN.........( value%, mouse_button% )
  3.  
  4. REM Called when a SELECT mouse click is detected
  5. REM value%        - new value for the icon
  6. REM mouse_button% - mouse button used for click event
  7.  
  8. REM the returned value of this function is placed in the display
  9. REM icon. i.e the following converts a value assumed to be in minutes
  10. REM to the form "h:mm"
  11.  
  12. = STR$( value% DIV 60 ) + ":" + RIGHT$( "00" + STR$( value% MOD 60 ), 2 )
  13. :
  14. *|Stop FN.........