033530BC Time value is not valid

Explanation

The specified timeVal structure contains a sub field value that is not valid. The year of the timeVal that is passed in must be 1970 - 2106 and is the actual year minus 1900. Therefore:
  • tm_year must be 70 - 206.
  • tm_mon must be 0 - 11.
  • tm_day must be 1 - 31.
  • tm_hour must be 0 - 23.
  • tm_min must be 0 - 59.
  • tm_sec must be 0 - 59.

User response

Specify a valid time value.