Did it have to do with cursor location?
yes,Try the following way .
Code:
rs.cursorlocation=aduseclient
Set rs = db.OpenRecordset("SELECT * FROM `Leads` WHERE `CurrentStatus` = " & "'" & opened & "' AND `Agent` = " & "'" & Combo1.Text & "'")
Label10.Caption = rs.RecordCount
rs.Close
or
rs.cursorlocation=aduseclient
Set rs = db.OpenRecordset("SELECT * FROM `Leads` WHERE `CurrentStatus` = " & "'" & opened & "' AND `Agent` = " & "'" & Combo1.Text & "'")
rs.movefirst
rs.movelast
Label10.Caption = rs.RecordCount
rs.Close