sdawson
Registered User.
- Local time
- Today, 06:06
- Joined
- Apr 22, 2003
- Messages
- 165
I’m using a combo box to select real names and using the following event to filter
Private Sub Combo45_Click()
Me.Filter = "[CustomerName] = '" & [Combo45] & "'"
Me.FilterOn = True
Me.GHSpickups.SetFocus
End Sub
Simply stuff so far.
The problem is a real name such as O’Reilly gives a problem because of the apostrophe.
Any way round this would be welcome.
Private Sub Combo45_Click()
Me.Filter = "[CustomerName] = '" & [Combo45] & "'"
Me.FilterOn = True
Me.GHSpickups.SetFocus
End Sub
Simply stuff so far.
The problem is a real name such as O’Reilly gives a problem because of the apostrophe.
Any way round this would be welcome.