此主题相关图片如下:3.jpg

各位大侠,需求是:查找某个时间段、并且核销=false、并且考勤等于'○', '×', '△', '$'的数据
Dim ks As WinForm.ComboBox = e.Form.Controls("ComboBox2")
Dim f As String = "1=1"
If ks.Text > "" Then
f &= " and " & ks.Text & " in ('○', '×', '△', '$')"
End If
'msgbox(f)
e.Form.Controls("Table4").Table.Filter = f & "And "&"审核= false"
这句代码要怎么改?