There's a couple of ways.
One is to use the AfterUpdate event of the combo to set the value of the
text box. To see an example, open the Northwind sample database, the Orders
Subform, and look at the ProductID combo. Its AfterUpdate looks up the
current price of the product, and drops it into the text box for price.
The other way is to just use the text box to show what is in one of the
other columns of the combo's RowSource. For example, if the value you want
is in column 2 of the combo, you would set the Control Source of your text
box to:
=[Combo1].Column(1)
(Note that the first column is zero, the 2nd is 1, and so on.)
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/14037-auto-populate.html
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users -
http://allenbrowne.com/tips.htmlReference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=14037
Reply to group, rather than allenbrowne at mvps dot org.
"KRDitch"
wrote in message
news:545722E9-0927-4786-9629-AE4F5F8D0260@microsoft.com...
> Is there a way that you can auto populate a text box when you choose
> something in a drop down box?