Hi all.
In my form I have 2 textbox that display current date and time
I would like when user close form by save evet values of current time and date save in Table1.
Can anyone please help me in this.
In my form I have 2 textbox that display current date and time
Code:
Private Sub Form_Timer()
txtDate1.Caption = Format(Now, "mmm d yyyy")
txtTime1.Caption = Format(Now, "hh:mm AMPM")
End Sub
Can anyone please help me in this.