January 1999
Beginner
373 pages
9h 43m
English
You can use the delete method to delete items from the listbox:
$lb->delete(firstindex [, lastindex ]);
The first argument is the index from which to start deleting. To delete more than just that one item, you can add a second index. The firstindex must be less than or equal to the lastindex specified. To delete all the elements in the listbox:
$lb->delete(0, 'end');
To delete the last item in the listbox:
$lb->delete('end');