Bud said:
Hi Marsh:
Entering times into date/time fields, but unable to
format for 100 of seconds
Entered as
01:23.95
That would be 1 min , 23 seconds and95 hundreds of a
second.
As Doug explained, Date/Time fields don't allow for
hundredths of a seond. There are several ways to approach
this, depending on what the users want to do. Three
separate fields and corresponding text boxes is one way.
Another is as Doug suggested, use an unbound text box
(without a format) and then use code to parse the time into
a numeric value. Maybe a double for the number of seconds
(e.g. 83.95 for your example above) or a long integer for
the number of hundredths (e.g. 8395).