Ok i have a combo box that is suppose to fill in the other fields.
I have got this code to fill the combobox but how do i male it fill in the other fields ????

VB Code:
  1. Private Sub Form_Load()
  2.     Data3.Refresh
  3.     With Data3.Recordset
  4.         .MoveFirst
  5.         Do Until .EOF
  6.             cboMembershipNo.AddItem (.Fields("MembershipNumber"))
  7.             .MoveNext
  8.         Loop
  9.     End With
  10. End Sub

that works fine, i just need to know how to make it fill in the relevant information.