I have an access program to handle inventory.
there is a listbox with values in it, I am trying to have the combobox updated with a value from the list box when clicked. The combobox has specific values in it, and there will only ever be thos values in the list box.
so far I have this:
Me.cboLocation.TabIndex = index
But it is not working. I have the index value set in an ifelse statement depending on the text that comes from the list box.
if Me.lstItems.Column(5) = "Cage" then
index = 0
elseif Me.lstItems.Column(5) = "Cabnet" then
index = 1
...
Any idea on how I might achieve this? thanks!
Me.cboLocation=124. What is your set up? – Remou Dec 18 '12 at 14:27