M
MeSteve
I am trying to use rs.recordset to get the number of records in my table
Dim db As Database
Dim rs As Recordset
Set db = OpenDatabase("my database path")
Set rs = db.OpenRecordset("tbl_Projects")
MsgBox rs.RecordCount
This returns 1 even though it will populate an array fully using do until
..EOF loop. What am I missing?
Dim db As Database
Dim rs As Recordset
Set db = OpenDatabase("my database path")
Set rs = db.OpenRecordset("tbl_Projects")
MsgBox rs.RecordCount
This returns 1 even though it will populate an array fully using do until
..EOF loop. What am I missing?