I have another question re: Access Calendar, Wide Calendar w/Switchboard.
Currently the time format in the calendar block, display like 03:00:00 PM, Hour:Minutes:Se conds AM/PM.
Even though the code below appears to be formated Not to display seconds, time is still displayed as noted above.
I looked at another code, below... Modified it, and still no change!
The query returns the correct format in the details section for each appointment, so it is not the query that need re-formating.
How do I re-format the time to display only hh:mm AM/PM in the calendar block area? Is it possible?
Currently the time format in the calendar block, display like 03:00:00 PM, Hour:Minutes:Se conds AM/PM.
Even though the code below appears to be formated Not to display seconds, time is still displayed as noted above.
Code:
strEventTime = Format(strStartTime, "h:mm AM/PM")
Code:
Me.Caption = "Access Calendar (" & Format$(Now(), "dddd - mmmm dd, yyyy hh:mm:ss AM/PM") & ")"
How do I re-format the time to display only hh:mm AM/PM in the calendar block area? Is it possible?
Comment