N nine Registered User. Local time Today, 07:48 Joined Feb 15, 2006 Messages 24 Mar 9, 2006 #1 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?
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?
RuralGuy AWF VIP Local time Today, 08:48 Joined Jul 2, 2005 Messages 13,825 Mar 9, 2006 #2 Are you trying to retrieve what is in the 3rd column? Me.cboSomething.Column(2) It is a zero based index.
Are you trying to retrieve what is in the 3rd column? Me.cboSomething.Column(2) It is a zero based index.
N nine Registered User. Local time Today, 07:48 Joined Feb 15, 2006 Messages 24 Mar 9, 2006 #3 Thanks for your help. Last edited: Mar 9, 2006
RuralGuy AWF VIP Local time Today, 08:48 Joined Jul 2, 2005 Messages 13,825 Mar 10, 2006 #4 You may want to look at the .ItemData(Index) property.