Listbox question

wcboyd

Registered User.
Local time
Today, 17:54
Joined
Aug 30, 2004
Messages
50
Hello All,

How do I retreive a value that has been clicked on in a listbox?
 
Seems a bit naive question, however if the value you want from the ist box is the bound column then

x = Me.Listbox

However if you need to refer to a different column then you need

x = Me.Listbox.Column(n)

Where n is the ordinal number of the column

David
 
Sorry for the naive question, but I appreciate the answer none the less!
My background is mainframe programming so this object world and syntax is a little overwhelming.

Thanks for being patient with me while I learn.

Craig
 

Users who are viewing this thread

Back
Top Bottom