Hi,
I would like to know what I am doing wrong.
Private Sub cmdSearchKeyword_Click()
On Error GoTo Err_cmdSearchKeyword_click
Me.Filter = omschrijving = [Which category are you searching for?
Me.FilterOn = True
Omschrijving.SetFocus
Exit_cmdSearchKeyword_click:
Exit Sub
Err_cmdSearchKeyword_click:
MsgBox Err.Description
Resume Exit_cmdSearchKeyword_click
End Sub
But I only want to typ a keyword and not the whole content, so search on a part of the content.
With the code abouve, I only search on the whole content.
What do I have to do? Who can help me?
[This message has been edited by sofie (edited 01-18-2002).]
I would like to know what I am doing wrong.
Private Sub cmdSearchKeyword_Click()
On Error GoTo Err_cmdSearchKeyword_click
Me.Filter = omschrijving = [Which category are you searching for?
Me.FilterOn = True
Omschrijving.SetFocus
Exit_cmdSearchKeyword_click:
Exit Sub
Err_cmdSearchKeyword_click:
MsgBox Err.Description
Resume Exit_cmdSearchKeyword_click
End Sub
But I only want to typ a keyword and not the whole content, so search on a part of the content.
With the code abouve, I only search on the whole content.
What do I have to do? Who can help me?
[This message has been edited by sofie (edited 01-18-2002).]