Linking a text box to another through input

C

ccholai

Hi,
Need some help in this - I have a form which has a combobox -
recommendation no and then a text box - description of recommend.

The Recom. no is selected which should show the associated desc in the
text box.
the desc of recommendation and the recom no is in a table - which is
not part of the form.

at the mo, the #name? error is showing in the rec desc text box.

please assist - thanks
 
M

Marshall Barton

Need some help in this - I have a form which has a combobox -
recommendation no and then a text box - description of recommend.

The Recom. no is selected which should show the associated desc in the
text box.
the desc of recommendation and the recom no is in a table - which is
not part of the form.


Assuming that the description field is included in the combo
box's RowSource query as the second field, just set the text
box's control source expression to:
=thecombobox.Column(1)
 
C

ccholai

Thanks Marsh - but I would like the recommendation desc to show up on
the form in a separate text box.
 
C

ccholai

Hey Marsh,

Thanks heaps for your help - disregard my previous reply...... didn't
read through it well enuf!! :-(
It works !!! thanks again!! :)

now i can carry on.....
 

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