From: Mattia B. <mb...@ds...> - 2002-05-05 19:14:14
|
> $event->GetItem() returns a Wx::ListItem, not the numeric index of the > item, so $listctrl->GetItem($listitem,1) always fails. $listctrl->GetItem( $event->GetIndex(), 1 ); will work > $listctrl->GetItem(1,1) will give me the second column of the second > item. > > do I have to manually get the selected items from the ListCtrl rather > than from the event? HTH Mattia |