M
Marilyn
I am not returning any rows from a recordset that has 114
records with the GetRows method. What am I doing wrong?
Dim rs As DAO.Recordset
Dim db As DAO.Database
Dim lngRows as long
Dim vArray as variant
set db = currentdb
Set rs = db.OpenRecordset("tblLookUp", dbOpenSnapshot)
vArray = rs.GetRows()
lngRows = = UBound(vArray , 2) + 1
Thank you.
records with the GetRows method. What am I doing wrong?
Dim rs As DAO.Recordset
Dim db As DAO.Database
Dim lngRows as long
Dim vArray as variant
set db = currentdb
Set rs = db.OpenRecordset("tblLookUp", dbOpenSnapshot)
vArray = rs.GetRows()
lngRows = = UBound(vArray , 2) + 1
Thank you.