YUPAPA
Registered User.
- Local time
- Today, 16:11
- Joined
- Sep 28, 2002
- Messages
- 11
HiHi, 
I have a form (client_FRM), a table (client_TBL). I have textboxes for all the fields in client_TBL on my form. All my textboxes are unbound. Also I have a button called 'command0'. I want to search for the firstname in client_TBL. How do I search the table and output the result?
My textbox is named 'client_firstname'. And the fieldname of the firstname in client_TBL is named 'client_firstname' also.
I've tried to use the code below for my find button (command0) but it is not workin...
Thank you. I am a newbie sorry.

I have a form (client_FRM), a table (client_TBL). I have textboxes for all the fields in client_TBL on my form. All my textboxes are unbound. Also I have a button called 'command0'. I want to search for the firstname in client_TBL. How do I search the table and output the result?
My textbox is named 'client_firstname'. And the fieldname of the firstname in client_TBL is named 'client_firstname' also.
I've tried to use the code below for my find button (command0) but it is not workin...
Code:
Private Sub command0_Click()
Me.RecordsetClone.FindFirst "[client_firstname] = " & Me![client_firstname]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
Thank you. I am a newbie sorry.