Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Newsgroup Archive
Access Newsgroups
Access General
table population
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="Larry Daugherty, post: 1080991"] You can use comboboxes for many purposes. We don't know what you're doing in any way. To get specific help you have to detail the issue and describe what you're trying to achieve: the what, not the how. :-) The AfterUpdate Event of the combobox is where the action is. If your combobox is selecting a value from a lookup table then you want to do something with it. Sometimes just getting the information into the combobox is sufficient. Your application might use the data there in later manipulations. However, if your combobox returns several values that you want in various controls on your form then you can do something like the following. (In the AfterUpdate Event) me!myTextBoxA = me!myCombobox1.column(1) 'col 1 is 2nd value me!myTextBoxB = me!myCombobox1.column(2) 'col 2 is 3rd value HTH [/QUOTE]
Verification
Post reply
Forums
Archive
Newsgroup Archive
Access Newsgroups
Access General
table population
Top