0

我有两个字段将被扫描到我的表单中,我在表单上有一个按钮,当按下它时,我想要一个对话框,说天气记录存在。我目前有一个从数据库中提取记录的 SQL 查询。

SELECT Stock, Scanned
FROM Products
WHERE ((([Stock])=Forms!Products![Stock Code]))                                                  
And ((([Scanned])=Forms!Products![Scanned Information]));

我希望能够检查此查询是否返回 null。我不确定这是否是检查记录是否存在的最佳方法,DLookup 会是我想要实现的更好的方法吗?

4

1 回答 1

1

Something like this should work:

Set db = CurrentDb
Set qdf = db.QueryDefs("mySelectQuery")
Set rs = qdf.OpenRecordset()
if rs.EOF then
MsgBox "The record does not exist"
else
MsgBox "The record does exist"
end if
于 2013-06-24T08:01:56.093 回答