Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Populate a text field from a combo box

Status
Not open for further replies.

mtabt

Technical User
Apr 25, 2001
23
US
I have a form that contains a combo box (RCNAME) and a text field (RC#). A RCNAME uniquely corresponds to a RC#. I want my users to choose a RCNAME from the combo box and automatically get the corresponding RC# in the RC# field.

How do I do this.???

Please help. Thank you very much in advance.
 
See this thread: thread702-82768 Joe Miller
joe.miller@flotech.net
 
Sub RCNAME_AfterUpdate()
RC# =RCNAME
or
RC# =RCNAME.column(ComboBoxColumnNumber) '>>> ComboBoxColumnNumber of first ComboBox column = 0

end sub

Aivars
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top