Displaying time without seconds

  • Thread starter Thread starter wmdmurphy
  • Start date Start date
W

wmdmurphy

In a form control I would like to display the date and time in this format
without seconds:

mm/dd/yy hh:mm PM

However, general date and time does include the seconds. Is there a way to
customize the display format to omit the seconds?

Bill
 
In a form control I would like to display the date and time in this format
without seconds:

mm/dd/yy hh:mm PM

However, general date and time does include the seconds. Is there a way to
customize the display format to omit the seconds?

Bill

You're not limited to the built-in formats.
On the Format property line of the control on the form, write:

mm/dd/yy hh:nn AM/PM

notice the "n" designates minutes, "m" designates months.
 
Back
Top