I have a time stamp that puts a time stamp in a textbox in the format off "mmddyyyyhmm am/pm"
I would like to show this in another textbox without the AM/PM (If I remove the am/pm it goes to a 24hr clock which I don't want).
all I have so far is
![]()
Private Sub StartTime_Click() Me.TextBox1 = Format(Now(), "mmddyyyyhmm am/pm") Me.TextBox6 = TextBox1.Value End Sub
Bookmarks