gpt4 book ai didi

MS-ACCESS:在消息框中显示查询结果

转载 作者:行者123 更新时间:2023-12-02 22:41:57 26 4
gpt4 key购买 nike

如何将查询结果输入到 Access 中的消息框中?

最佳答案

您可能希望使用记录集。

Dim rs As DAO.Recordset

Set rs=CurrentDB.OpenRecordset("NameOfQuery_Table_Or_SQLString")

If Not rs.EOF Then
MsgBox "Hi, the first record, first field is " & rs.Fields(0)
End if

如果您希望将所有记录返回到字符串,也可以使用 ADO 记录集。

使用 DLookUp 可能会更容易,这完全取决于您想要返回什么以及从哪里返回。

关于MS-ACCESS:在消息框中显示查询结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1949157/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com