home *** CD-ROM | disk | FTP | other *** search
- *|Start FN.........
- DEF FN.........( value%, mouse_button% )
-
- REM Called when a SELECT mouse click is detected
- REM value% - new value for the icon
- REM mouse_button% - mouse button used for click event
-
- REM the returned value of this function is placed in the display
- REM icon. i.e the following converts a value assumed to be in minutes
- REM to the form "h:mm"
-
- = STR$( value% DIV 60 ) + ":" + RIGHT$( "00" + STR$( value% MOD 60 ), 2 )
- :
- *|Stop FN.........