From: Dave R. <dav...@ma...> - 2002-05-04 21:22:08
|
I have a Wx::ListCtrl displaying rows of information in report view. I populate this control with InsertStringItem() and SetItem() to set the column information. How do I get the data out?! for example, I intercept a EVT_LIST_BEGIN_DRAG and get an event parameter. from this, I can do my $listitem = $event->GetItem() which returns a wxListItem. the wxWindows documentation seems to stop at this point without a reference page for wxListItem. I've tried $listitem->GetText() which returns nothing, and $listitem->GetText(0) which dies. environment: wxPerl 0.10 wxWindows 2.2.9 Win2K Prof regards, /dave |