Determine Current Date And Time

'Insert the following code to your form:

Private Sub Form_Load()
MsgBox Format(Time, "Long Time") & " - " & Format(Date, "Long Date")
End Sub

Go Back