Combobox question

S

SteveS

Use your control names and form names...

With the controls on the same form:

Me.TextBoxName = Me.ComboBoxName.Column(X) where X is the
column count minus 1 (columns are zero based). So, if
there are two columns, then use Me.ComboBoxName.Column(1)

With the text box on a different form:

Forms!FormName!TextBoxName = Me.ComboBoxName.Column(X)


You can connect it however you want!!!! <grin>


HTH

Steve
 

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