Question : rs.FindFirst not woking in Access 2007

I converted a 2003 Acccess database to a 2007 database and I am now getting a 'compile error: method or data member not found' at this line:

rs.FindFirst "acuityScoreID = " + IDString

Any ideas why this is happening? Does it have to do with references?

(see full code below)
Thanks
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
Private Sub cmdClose_Click()
    
'------->Set previous form Forms!frm_SupvReport_Mgr_View_DataEntry_AcuityScores to matching record on this form
    Forms!frm_SupvReport_Mgr_View_DataEntry_AcuityScores.Requery
    
    Forms!frm_SupvReport_Mgr_View_DataEntry_AcuityScores!trackingNUmber = Me!acuityScoreID
    
    Dim IDString As String
    Dim rs As Recordset
    IDString = Me!acuityScoreID.Value

    Set rs = Forms!frm_SupvReport_Mgr_View_DataEntry_AcuityScores.Recordset
    rs.FindFirst "acuityScoreID = " + IDString
    Forms!frm_SupvReport_Mgr_View_DataEntry_AcuityScores.Bookmark = rs.Bookmark
'------->End

    DoCmd.close acForm, "frm_SupvReport_DataEntry_AcuityScores_Guidelines"
    DoCmd.close acForm, "frm_SupvReport_Mgr_View_DataEntry_AcuityScores_Multiple"
    
End Sub

Answer : rs.FindFirst not woking in Access 2007

Random Solutions  
 
programming4us programming4us