S
Simon
I have a field witht he following code on a form.
The form requery every time to search for the closest mathc
Private Sub PostCodeSearch_Change()
On Error Resume Next
Me.Requery
Me!PostCodeSearch.SetFocus
Me!PostCodeSearch.SelStart = Len(Me.PostCodeSearch)
On Error GoTo 0
End Sub
Problem i have is it does not let me put a Space in the text field
How can i put in a space
The form requery every time to search for the closest mathc
Private Sub PostCodeSearch_Change()
On Error Resume Next
Me.Requery
Me!PostCodeSearch.SetFocus
Me!PostCodeSearch.SelStart = Len(Me.PostCodeSearch)
On Error GoTo 0
End Sub
Problem i have is it does not let me put a Space in the text field
How can i put in a space