|
From: Kevin M. <kej...@ho...> - 2010-06-10 12:58:41
|
Prasad,
Did you create this ListView control yourself in a Perl Win32::GUI
script? If so, you can use the object returned when creating the control
to access methods for that control, like so:
my $listview = Win32::GUI::ListView->new(...);
# or
my $listview = $parent->AddListView(...);
Here is some code that can be used to iterate each item in a ListView
control:
for my $i (0 .. $listview->GetItemCount()-1){
my %item = $listview->GetItem($i);
}
To get at any of the items in a ListView control, you need to know the
index of the item that you wish to query.
Kevin.
>
> Hello,
>
> I want to read values present inside ListView Control which is
> embedded inside System Tab Control.
>
> Flow is like this
>
> Form --------contains------------à Blank Dialog Class
> --------contains-------------à System Tab Control ------------ one tab
> contain --------à List view control.
>
> Can anyone please suggest how to read value inside this hierarchy?
>
> **Thanks & Regards**
>
> **Prasad V. Joshi**
>
>
> ------------------------------------------------------------------------------
> ThinkGeek and WIRED's GeekDad team up for the Ultimate
> GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
> lucky parental unit. See the prize list and enter to win:
> http://p.sf.net/sfu/thinkgeek-promo
>
>
> _______________________________________________
> Perl-Win32-GUI-Users mailing list
> Per...@li...
> https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
> http://perl-win32-gui.sourceforge.net/
|