It's not clear why you would want to do this. Are these people already in
your database? If so, picking/typing their name from a combo box along with
their PersonID key, should be sufficient, except perhaps for a date/time
field. If they have data that you want to print, create a report with a
query based upon their data.
If you are just populating the form for display purposes only, include the
additional information in columns in the combo. Then you can fill in other
text boxes by setting them = to the column (minus 1 because it's zero based)
So for instance, their phone number was the 4th column, you'd use a
controlsource in the text box like:
= cboComboBoxName.Column(3)
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
"DMH" <(E-Mail Removed)> wrote in message
news:622B73FE-732F-4662-8D3A-(E-Mail Removed)...
>I have a form (linked to a table) that I fill out any time a person enters
>my
> facility. Is there any way to autofill the rest of the person's
> information
> (text boxes in the same form) when I type their name in the corresponding
> text box?