In AC97, how do you format a textbox to show date and time, but without the seconds. I have tbxStartUnload that is created with the following code.
A typical result is 10/28/07 8:30:00 AM.
How do I get it to show only 10/28/07 8:30 AM, so the Date formatted field in the table will also be 10/28/07 8:30 AM?
Thanks,
Brian
Code:
Private Sub lbxStartHour_Click()
Me!tbxStartUnload = CVDate(Me!ActiveXCtl93 & " " & Me!lbxStartHour)
End Sub
A typical result is 10/28/07 8:30:00 AM.
How do I get it to show only 10/28/07 8:30 AM, so the Date formatted field in the table will also be 10/28/07 8:30 AM?
Thanks,
Brian