Hello Guys
i want to filter my continuous form on change event not after update
i use this code
but i can't type more than one letter
so i add this line
but now i can type any word but i can't use the space
any help??
i want to filter my continuous form on change event not after update
i use this code
Code:
Dim strFilter As String
Me.Refresh
strFilter = "video_name like '*" & Me.Text41 & "*'"
Me.Filter = strFilter
Me.FilterOn = True
but i can't type more than one letter
so i add this line
Code:
Me.Text41.SelStart = Nz(Len(Me.Text41), 0)
but now i can type any word but i can't use the space
any help??