Access MS Access Calendar0 assistance

Joined
Jan 23, 2014
Messages
2
Reaction score
0
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top