I have a simple Access 2000 database.
I have a form with an unbound field called "Find VSI".
I have a button called "Find" that, when clicked, should find the record where the field "Vehicle Shop #" is equal to "Find VSI".
Will this code work?
Private Sub Find_Click()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[Vehicle Shop #] = " & Me![Find VSI]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
I am having some problems with this. Any suggestted solutions will be appreciated.
Steve
I have a form with an unbound field called "Find VSI".
I have a button called "Find" that, when clicked, should find the record where the field "Vehicle Shop #" is equal to "Find VSI".
Will this code work?
Private Sub Find_Click()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[Vehicle Shop #] = " & Me![Find VSI]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
I am having some problems with this. Any suggestted solutions will be appreciated.
Steve