Enter ID in field and contact info appears in

L

Lisa

How would I do this? I would like to enter the ID number and after the ID #
is entered I would like for the contact info to automatically appear in there
fields in the form.
 
K

KARL DEWEY

Use a query to feed the form using the combo where you enter the ID number as
criteria like this --
[Forms]![YourFormName]![Combo5]
Use AfterUpdate event to ReQuery.
 
Top