Hi, In Visual basic you can do this with an extended Listbox: FOR n = 0 to List1.Listcount-1 IF List1.Selected(n)=TRUE THEN <action> ENDIF NEXT n Listbox1.Selected doesn't seem to work in Gambas. How do I process multiple selections in an extended listbox? Thanks