thanks Ranman256
you are true but the problem is not in the filter at the same form (search)
i want that filter when click a button in other form (general) so,
the vba me.filter or Me.RecordSource not work
thanks for your reply but now you understood me .. right ?
hello !
I've a form contain a search box (find_name) on the formheader
it work without problems with its recordsourse through this vba
Private Sub find_name_Change()
Dim ct As String * 1
Dim ss As String * 1
ct = """"
ss = "*"
Me.find_name.Tag = Me.find_name.Text
Me.RecordSource...