![]() |
#2
花渊美步2008-10-20 10:07
|
strSQL = "SELECT * FROM FinalConfirm WHERE (((FinalConfirm.RefNo) Like '*" & getOrgRefNo(Forms![F_FConf]![cboRefNo]) & "*'))"
Set rsPanda = dbPanda.OpenRecordset(strSQL, dbOpenSnapshot)
With rsPanda
If Not .EOF Then
If MsgBox("System will delete the old data", vbOKCancel + vbQuestion, "FinalConfirm") = vbOK Then
Do While Not .EOF
[bo].Delete[/bo]
.MoveNext
Loop
End If
End If
.Close
End With
Set rsPanda = Nothing
dbPanda.Close
在 [bo].Delete[/bo]这里提示错误:
只有本站会员才能查看附件,请 登录
这是什么原因啊?
我已经试了很多方法都不行!
有谁能帮我解决下!