Access VBA code in Access 2003 database ????

Joined
Jan 25, 2012
Messages
1
Reaction score
0
I am supporting an Access 2003 database application and I am looking at code I don't understand. I am realitively new to VBA and most of my programming experience is way before OOP. Anyway, can anyone tell me what this code is doing?

Private Sub Combo223_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[DateReported] = #" & Format(Me![Combo223], "mm\/dd\/yyyy") & "#"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark

Combo223 is a drop down menu in a form. The record source for this drop down is a query that selects the DateReported fields in all the records of a ODBC table. Any help to demystify this for me would be greatly appreciated.
 

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