Re: [Gambas-user] listview equivalent of listbox.list

2009-05-22 Thread Dimitris Anogiatis
Hey joshua, I think listbox can do what listview.current.delete does. Try this ListBox1.Remove(ListBox1.Find(ListBox1.Text)) this will find the index number of whatever item is currently selected and the item with that index number will be removed as for enumerating a listbox a simple fo

[Gambas-user] listview equivalent of listbox.list

2009-05-22 Thread Joshua Higgins
Hi, I want to use the contents of a listview with a FOR EACH statement. Is there an equivalent of ListBox.List, to return the array? I would use list boxes, but I need the ListView.Current.Delete function, which the listbox seems to lack. Thanks. -- joshua higgins >>--