Combo Box Question

G

Gus

A have a Password Form where the user select their name (from a table) and
then input their password (from the same table) to open a form. In the form
that they open there is a Combo Box that I want to fill automatically from
the selected name in the Password Form. Can anyone help me on how to
accomplish this..
Thanks
Gus
 
A

Allan Murphy

Gus

Using the "ON LOAD" event of your second form enter the following code

me!combo_box=forms!password form!username

combo_box is the name of your combo box on the second form
username is the name of the field on your password form that the user
selects their name.

You may have to change your password form name to passwordform as I am not
sure password form will work.
 
Top