Refrencing a combobox's values

nine

Registered User.
Local time
Today, 02:53
Joined
Feb 15, 2006
Messages
24
How can I refrencence any value within a combobox (not the one selected)? I want to try and acheve something like this:

cboSomething.Value(3)

Although that doesn't work. Is this possible?
 
Are you trying to retrieve what is in the 3rd column?
Me.cboSomething.Column(2)

It is a zero based index.
 
Thanks for your help.
 
Last edited:
You may want to look at the .ItemData(Index) property.
 

Users who are viewing this thread

Back
Top Bottom