Jase4now said:
On my form I need to type a length of time in this format 1:30 (1 hour, 30
minutes), but I want it to show and calculate as if I had typed 1.5. I also
would like to not see the "AM" or "PM" if that is possible.
You can enter and display 1:30 as a time value by either
binding the text box to a date/time field in the form's
record source table/query or by setting the text box's
Format property to h:nn
I don't really understand exactly what you want here, but
you can use the value 1.5 in further calculations by using a
simple calulation on the time text box's value. A semi
formal calculation could be:
DateDiff("n", 0, txttime) / 60
or you could use the hack calculation:
txttime * 24
If your further calculations are summing these time
durations, then I strongly suggest that you use the number
of minutes instead of hours.