ive been trying to get a list box input its list into a label on another form. i thought it worked but ive discovered that it only inputs the last entry i make.

the code i have is
Code:
Form5.bui_lbl.Caption = spec_lst.List(spec_lst.Listcount - 1)
i tried this code with i wonder if it mite be better with some proffesional tweeking?

Code:
Form5.bui_lbl.Caption = spec_lst.List(spec_lst.Listindex > 0)
any help i'd be thankful?