只要上述三个字段中有符合非文本框中的内容,就将此条记录搜索出来我不知道for each这个代码怎么写,麻烦哪位能帮我修改一下供我参考作者: sgrshh29 时间: 2008-7-18 12:48
勉强能用:
Dim ctl As Control
For Each ctl In Me
If Left(ctl.name, 2) = "no" Then
Me.Filter = ctl.name & "='" & Text4 & "'"
Me.FilterOn = True
If Me.RecordsetClone.RecordCount > 0 Then Exit Sub
End If
Next作者: cake_super 时间: 2008-7-18 13:17
冒昧问一下 If Me.RecordsetClone.RecordCount > 0 Then Exit Sub 什么意思啊作者: sgrshh29 时间: 2008-7-18 13:44
如果找到记录,就退出循环。