203
TIDE and Tibbo BASIC User Manual
©2000-2008 Tibbo Technology Inc.
Details
---
Examples
s = mid(
"ABCDE"
,
2
,
3
)
' result will be 'BCD'.
Mincount Function
Function:
Returns the minutes number for a given hours and
minutes.
Syntax:
mincount(hours as byte, minutes as byte) as word
Returns:
Minute number elapsed since midnight (00:00). This
value is in the 0-1439 range.
See Also:
,
,
,
Part
Description
hours
An hour value, from 0 to 23.
hours
A minute value, from 0 to 59.
Details
If any input parameter is illegal (hours exceeds 23, minutes exceeds 59, etc.) this
syscall will return 65535. This error value cannot be confused with an actual valid
minute number since the maximum minute number cannot exceed 1439.
Examples
w = mincount(14, 00)
' result will be 840
Minutes Function
Function:
Returns the minutes value for given minutes number.
Syntax:
minutes(mincount as word) as byte
Returns:
Minutes in the 0-59 range.
See Also:
,
,
,
211
204
191
211
192
195
203
211
204
191
211
192
195
203