M
Mike O'Brien
Try using the RecordCount property of your recordset after
the MoveLast method:
Debug.Print rs.RecordCount
Mike.
the MoveLast method:
rs.MoveLaststrSQL = "Select values from table"
set db = DBEngine.Workspaces(0).Databases(0)
set rs = db.OpenRecordset(strSQL, DB_OPEN_DYNASET)
Debug.Print rs.RecordCount
Mike.