How do I ......

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
 
H

HSalim

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top