Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
16answers
764 views

Why shouldn't I ask my users to enter times using military format

I have a form that asks users to enter a start and end time for an event. For many years, we have allowed them to enter the times by selecting the hour (1-12), minute (1-60), and AM/PM from three drop ...
2
votes
2answers
243 views

Military date/time to_char meridian indicator option

Running PostgreSQL 7.4(Yep we're upgrading) Field is data type: timestamp with time zone Format is like this: 2011-06-30 19:18:07-04 Converting to this format: to_char(datetime_field, 'MM-DD-YYYY ...
0
votes
1answer
232 views

adding military time in string representation

So what I am trying to do is add two strings together in the form of military time. Here is the example. Time1 = "01:00"; Time2 = "04:30"; Adding the two together would produce "05:30". This seems ...
0
votes
1answer
254 views

Aribitrary System.DateTime to four character military time string

How would I convert an arbitrary System.DateTime to a four character military time string. Example 1: 7am would be "0700" Example 2: 2pm would be "1400" Thanks!