hi,
I have a continuous form called frmRandapparaatLijst (or frmHardware in english). This is a continuous form that shows the complete tblRandapparaten (tblHardware).
in the formheader i have placed a Textbox and a Search button having this code attached to it:
txtZoekMerk is the textbox that has to be filled in.
Why doesn't this filter work? I tried the whole day to change my WHERE syntax, what is wrong?
thx in advance
Noizz
I have a continuous form called frmRandapparaatLijst (or frmHardware in english). This is a continuous form that shows the complete tblRandapparaten (tblHardware).
in the formheader i have placed a Textbox and a Search button having this code attached to it:
Code:
Private Sub cmdZoekMerk_Click()
Dim strMerk As String
strMerk = txtZoekMerk
Debug.Print strMerk
DoCmd.ApplyFilter , "Forms![frmRandapparaatLijst]![txtMerk] = '" & strMerk & "'"
End Sub
Why doesn't this filter work? I tried the whole day to change my WHERE syntax, what is wrong?
thx in advance
Noizz