Tupacmoche
Registered User.
- Local time
- Today, 02:14
- Joined
- Apr 28, 2008
- Messages
- 291
I have googled this all day and tried many version and none have worked. The only part that does not work is the date portion. All, I want to do is insert the current time into a field called timeStamp to keep track of the rows. Can anyone see what is wrong? I just need the correct syntax so that I can insert a date.:banghead:
The now() function is inserting the date into a datetime column formated as a short date, Much thanks.
strSQL = "Insert into tblAssignments (Caller, HowMany,TimeStamp) VALUES ('" & Me.CboCaller.Value & "', '" & _
Me.CboHowMany.Value & "', #" & Now() & "#);"
The now() function is inserting the date into a datetime column formated as a short date, Much thanks.
strSQL = "Insert into tblAssignments (Caller, HowMany,TimeStamp) VALUES ('" & Me.CboCaller.Value & "', '" & _
Me.CboHowMany.Value & "', #" & Now() & "#);"