In need of help w/ combobox's

  • Thread starter Thread starter David
  • Start date Start date
D

David

If someone could help me with this. I have a combobox
based of a table with two columns. Column one has the
name of tests and column two has the course the test
replaces. I would like it when the user selects a test
that the replacing course appears in a text box. I
really have do not know how to code this so any help
would be great.


Thank you ahead

David Ehrenreich
 
Created an event for your combobox AfterUpdate

Me!txtTextBox = Me!cboComboBox.Column(1)
 
Thank you very much. I had tried writing the expression
like that, but it did not work because I used me.textbox
rather then me!textbox. I'm learning VB by myself can
you tell me the difference with using . or ! with me
statements.

Anyhow thank you it worked just like I needed it too.

Dave
 
Back
Top