home *** CD-ROM | disk | FTP | other *** search
- *|Start FN.........
- DEF FN.........( value$ )
-
- REM Called when a SELECT mouse click is detected
- REM value$ - new contents of the display icon
-
- REM the returned value of this function is a decoded version
- REM of the new string in the display icon
- REM i.e the following converts a value assumed to be in
- REM the form "h:mm" back to minutes
-
- = VAL( value$ ) * 60 + VAL( RIGHT$ (value$, 2 ) )
- :
- *|Stop FN.........