Dim dw As WinForm.ComboBox = e.Form.Controls("单位")
Dim mc As WinForm.ComboBox = e.Form.Controls("名称")
Dim dz As WinForm.TextBox = e.Form.Controls("地址")
Dim fs As WinForm.TextBox = e.Form.Controls("份数")
Tables("报刊订阅数据表").filter="报送单位 = '" & dw.text & "' And 订户名称 = '" & mc.text & "' And 订户地址 like '*" & dz.text & "*' and 份数 like '*" & fs.text & "*'"
请问:
Tables("报刊订阅数据表").filter="报送单位 = '" & dw.text & "' And 订户名称 = '" & mc.text & "' And 订户地址 like '*" & dz.text & "*' and 份数 like '*" & fs.text & "*'"
这个公式有问题吗?