Hello All
I have a text field that I would like to have some information automatically populated when the form is open. I know the basics but the trouble I am having is having the date and time populated before the default text.
here is what I tried but no luck on it
Code:Private Sub Form_Load() Dim strQuery As String 'Dim js As Integer Dim currDateTime As Date currDateTime = Now() Me.Description = " & currDateTime & " & " " & "J.Adams 41066 CLT SMB - AM : " & " " & "" End Sub