Hi,

Here's a code snippet for a simple search using the combo box..I assume your form is bound to one table only say tblCustomer...Add some textbox which are also bound to the table...The combo box is unbound...

In the properties change the row source type to table/query, and the row source to tblCustomer..

Attach the code in the combo box afterupdate() event..

VB Code:
  1. Private Sub Combo8_AfterUpdate()
  2.     ' Find the record that matches the control.
  3.     Dim rs As Object 'rs means recordset that will retrieve info in your table
  4.                            'tblCustomer
  5.     Set rs = Me.Recordset.Clone
  6.     rs.FindFirst "[Customer_ID] = " & Str(Nz(Me![Combo8], 0))
  7.     If Not rs.EOF Then Me.Bookmark = rs.Bookmark
  8. End Sub


Regards,