Link to home
Start Free TrialLog in
Avatar of Fiacre
Fiacre

asked on

VB combobox

hi

Supposed i have a combo-box for selecting an Inventory Item ID....how can make the combo-box shows....example Item ID, Item Description, Item On hand, Item On Order, etc...in the drop-down list, but the user is actually only selecting the Item ID ?

Avatar of jkwasson
jkwasson

use the tag property of the combo box

with combo1
.additem "my first combo value"
.tag  = "my first combo id"
end with

hope this helps
jk
ASKER CERTIFIED SOLUTION
Avatar of fds_fatboy
fds_fatboy

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial