How can I retrieve the value of specified column of the selected row in a multicolumn listbox?
I populate the listbox by setting the RowSource property with a SQL st
Use listboxControl.Column(intColumn,intRow). Both Column and Row are zero-based.
listboxControl.Column(intColumn,intRow)