Question : Capture data from listbox

Hello,

I have a listbox that contains data. When the user clicks row I would like the data held within column 1 to be copied to a textbox. Is this possible?

The listbox contains fairly dynamic data.

Thanks.

Answer : Capture data from listbox

in the afterupdate event of the listbox

private sub listbox_afterupdate()

me.text1=me.listbox.column(1)

end sub
Random Solutions  
 
programming4us programming4us