The following is the code I am using in an attempt to add a Date and Time stamp to new records saved in main table. The date returns but the Time doesn't. I have tried various fixes like creating a TimerInterval text box with little look.
Code:
Private Sub Form_Load() 'Form_frm_CLLDateEntry.Filter = "[tbl_CallData].Analyst" = Me.Text25 'Form_frm_CLLDateEntry.FilterOn = True 'strRacf = "Query_qry_getLoginID.RacfID" 'Me.Text25.Value = strFacf Me.txtDate = DateValue(Now) Me.txtTime = TIME() Me.TimerInterval = 1000 End Sub
Comment