Paul Wagner
Registered User.
- Local time
- Today, 05:00
- Joined
- May 18, 2004
- Messages
- 48
On a form I have 2 search unbound fields called keysearchword and guestsearchword. Each has an On Exit event that performs their respective searches.
If IsNull([Keysearchword]) Then
strLinkCriteria = "[Keywords] Like '*'"
Else
strLinkCriteria = "[Keywords] Like '*" & Me!Keysearchword & "*'"
End If
DoCmd.OpenForm strDocName, , , strLinkCriteria
However, after the first find, I see a "(filtered)" next to the correctly displayed records. At this point however, I can't even get the cursor into the second guestsearchword field.
What am I doing wrong and how do I fix it?
If IsNull([Keysearchword]) Then
strLinkCriteria = "[Keywords] Like '*'"
Else
strLinkCriteria = "[Keywords] Like '*" & Me!Keysearchword & "*'"
End If
DoCmd.OpenForm strDocName, , , strLinkCriteria
However, after the first find, I see a "(filtered)" next to the correctly displayed records. At this point however, I can't even get the cursor into the second guestsearchword field.
What am I doing wrong and how do I fix it?