Display multiple validation messages to the user

后端 未结 2 1255
暖寄归人
暖寄归人 2021-01-17 05:40

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         


        
2条回答
  •  囚心锁ツ
    2021-01-17 06:19

    Anyway have you known GetRows method in both DAO and ADO? You may use it in your case.

    yourarray = recordset.GetRows()
    

提交回复
热议问题