PDA

View Full Version : Solved: Get values from a multi columns listbox



Kaizer
02-21-2007, 05:03 AM
I have a listbox with 3 columns. The bound column = 1. When I select an item in the listbox I would like to get the value from column2 and column3 and place them in txtbox1 and txtbox2. How to reference column2 and column3?

Thank you in advance.

moa
02-21-2007, 05:14 AM
txtBox1.value = cmbMyCombo.Column(2)

Kaizer
02-21-2007, 05:32 AM
That was quick. :) Thank you, Glen.