Error Messages/40783
Error message examples
A value of 61 was passed as the second parameter, «m», to MakeTime. This is out-of-range, it should be between 0 and 59 inclusive.
Cause
The function MakeTime(h, m, s) gives the time of the day as an elapsed fraction of the day, and the parameters to the function should be in the following ranges:
- 0 <= h <= 23
- 0 <= m <= 59
- 0 <= s <= 59
You have called MakeTime by passing a value to one of the parameters that is outside the allowed range.
Remedies
Correct the parameter passed to the MakeTime function to be in the valid range.
See Also
Comments
Enable comment auto-refresher