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

  1. *|Start FN.........
  2. DEF FN.........( value$ )
  3.  
  4. REM Called when a SELECT mouse click is detected
  5. REM value$ - new contents of the display icon
  6.  
  7. REM the returned value of this function is a decoded version
  8. REM of the new string in the display icon
  9. REM i.e the following converts a value assumed to be in
  10. REM the form "h:mm" back to minutes
  11.  
  12. = VAL( value$ ) * 60 + VAL( RIGHT$ (value$, 2 ) )
  13. :
  14. *|Stop FN.........