Hi,
yes, it's pretty straightforward, just use ListBox[Index].Selected (just
to get their texts not the whole object in this example):
DIM i AS Integer
FOR i = 0 TO ListBox1.Count - 1
IF ListBox1[i].Selected THEN
PRINT ListBox1[i].Text
ENDIF
NEXT
regards,
tobi