In MS-Access, how can I store the rows retrieved from my SELECT statement in an array, and show many rows in one messagebox:
Dim rSEL, rSUM, rDes As DAO.Reco
Anyway have you known GetRows method in both DAO and ADO? You may use it in your case.
yourarray = recordset.GetRows()