Microsoft
Software
Hardware
Network
Question : Access - Selecting record with today's date
Hi. I am using the following code to automatically go to the record where the field "CDate" contains today's date, but it isn't working
Private Sub Form_Load()
Me.RecordsetClone.FindFirs
t "[CDate]=" & Date
If Not Me.RecordsetClone.NoMatch Then
Me.Bookmark = Me.RecordsetClone.Bookmark
End If
End Sub
Answer : Access - Selecting record with today's date
Hello murbro,
What data type is CDate?
Anyway...
Me.RecordsetClone.FindFirs
t "[CDate]=#" & Date & "#"
Regards,
Patrick
Random Solutions
difference btw left join and right join with examples
Solaris 7 "no shell" on root, su not working, su parameters for shell?
Flash Player Acting Strangely - Settings won't stick
Outlook XP calendar sharing w/ multiple users on same machine
Open and close a pdf document
Fedora Core 3 - Redirecting normal console to Serial ttyS0
block/unblock the IP in Windows Firewall?
Hide all linked tables
Restore Mailbox to Different Exchange server - using Backup Exec with Exchange 2003
VBA acOutputQuery and acFormatXLS. What does this mean?