需要一些帮助。 我正在使用ADO.Recordset objcet.It有以下fieds:artclv_id,artclv_caption等。 我也有字典,其中包含像arctlv_id列中的数据一样的字典。我想通过传递字典值作为标准来查找记录集。但是我只得到第一个值而在第二次迭代时它不起作用。任何人都可以帮助我吗? 这是代码:
dim zxc
for zxc = 0 to parentListSorted.Count -1
key = parentListSorted.Keys
Dim findCriteria
findCriteria = key(zxc)
rst.Find ("artclv_id = findCriteria")
Dim qwe
qwe = rst("artclv_caption")
next