Aloha,
I was hoping that some of the smart folks on here could help me out. I have upgraded to Access 2010 and since Calendar0 is not supported I need some work arounds for the following code. I do have one of the calendars (CalendarDemo) to use in its place.
But I am having trouble with the coding.
Here is what I have:
Private Sub Form_Load()
Me.Calendar0 = Date
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[AppointmentDate] = #" & Format(Me![Calendar0], "mm\/dd\/yyyy") & "#"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
What do I use to replace :Me.Calendar0", and is there any online documentation that can assist me also?
Mahalo for your assistance
I was hoping that some of the smart folks on here could help me out. I have upgraded to Access 2010 and since Calendar0 is not supported I need some work arounds for the following code. I do have one of the calendars (CalendarDemo) to use in its place.
But I am having trouble with the coding.
Here is what I have:
Private Sub Form_Load()
Me.Calendar0 = Date
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[AppointmentDate] = #" & Format(Me![Calendar0], "mm\/dd\/yyyy") & "#"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
What do I use to replace :Me.Calendar0", and is there any online documentation that can assist me also?
Mahalo for your assistance