This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / 懂ACCESS 2000的DX们请进。我在ACCESS 97中常用的码在ACCESS 2000中不工作。请给我翻译成2000的码Search a record based on the value selected from combo box [ID]:
Private Sub ID_AfterUpdate()
dim r as recordset
set r =me.recordsetclone
r.findfirst "[ID]=" & Me!ID
me.bookmark=r.bookmark
End Sub
An error message will pop up, saying "Compile error, method or data member not found"
同样的码,如果我在97版里写,再转成2000就行,如果直接写在2000里就不行。这是怎么回事?
-23456789(大白呼);
2004-6-28
{423}
(#1782428@0)
-
就是这一句有问题 r.findfirst "[ID]=" & Me!ID
-23456789(大白呼);
2004-6-28
(#1782482@0)