How do I ......

  • Thread starter Thread starter mel
  • Start date Start date
M

mel

How do I get a text field to populate based upon a
selection that was made in a list box. The list box is
linked to the table I need along with the description that
I need the text field to be populated from.

Please HELP
 
make sure the list box's select statement contains the field you want to
enter into the text box
in the listbox's after update or exit event add this:
me.txtboxsomename.value = me.lbxListboxname.Column(1)

note that the columns in the listbox start with Column(0).

HS
 
Back
Top