本人设计如下:
Private Sub Form_Close()
delete * from 示范户 where 示范户姓名 is null
End Sub
提示语法错误作者: andymark 时间: 2010-1-23 15:52
docmd.rusql "delete * from 示范户 where 示范户姓名 is null"作者: dasxsf 时间: 2010-1-23 18:37
运行后提示:
编辑错误:方法和数据成员未找到
Private Sub Form_Close()
DoCmd.rusql "delete * from 示范户 where 示范户姓名 is null"
End Sub作者: jhf567 时间: 2010-1-23 19:52
应该是RUNSQl,你少了个U
意思是运行SQL语句作者: zhanghonglgq 时间: 2010-1-26 10:37
学习中……