JLAZ
Registered User.
- Local time
- Today, 01:54
- Joined
- Sep 17, 2003
- Messages
- 24
I need to search a number field in a form. I'm using a unbound text box
and the code i'm using is this
Private Sub SearchStock_AfterUpdate()
Me.RecordsetClone.FindFirst "PollIdField = '" & SearchStock & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
SearchStock = Null
End Sub
This code only works if the field is a Text field
Why, and what could I do to fix the code.
I'm a self taught access user and I don't know VB I just steel alot of it from others.
and the code i'm using is this
Private Sub SearchStock_AfterUpdate()
Me.RecordsetClone.FindFirst "PollIdField = '" & SearchStock & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
SearchStock = Null
End Sub
This code only works if the field is a Text field
Why, and what could I do to fix the code.
I'm a self taught access user and I don't know VB I just steel alot of it from others.