Why ".RecordCount" always return the number of all records of the entire table? I just want to have the number of records return by the request. (The request can be a select, delete, ...)
Code:
With Form1.Adodc1
.ConnectionString = "....mdb...Access..."
.RecordSource = "" & Request & ""
NUMOFRECORDS = .Recordset.RecordCount
.Refresh
End With