WARNING: This server is unstable and will be retired in the next days. If you want to keep this forum available, please request immediately a migration on the Nabble Support forum. Forums that don't receive any migration request will be deleted forever.

how to retrieve the value of syslistview32 item from the GUI

View: New views
2 Messages — Rating Filter:   Alert me  

how to retrieve the value of syslistview32 item from the GUI

by Sangeeta Huddar :: Rate this Message:

| View Threaded | Show Only this Message

hello all,
     I m trying to read the GUI and get the values.
there is a tab in GUI for which the Winspy shows the name as "syslistview32"
how will i read the values of this item .
kindly help
 
 
-shilpa

------------------------------------------------------------------------------
This SF.net email is sponsored by

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
Perl-Win32-GUI-Users mailing list
Perl-Win32-GUI-Users@...
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
http://perl-win32-gui.sourceforge.net/

Re: how to retrieve the value of syslistview32 item from the GUI

by Kevin Marshall-4 :: Rate this Message:

| View Threaded | Show Only this Message

Hi,

Do you mean you are trying to read values from a listview control in a Window that you have created or a listview in a Window for another application. If you mean one you created, then this is how you do it:

foreach my $index ($listvew->SelectedItems()){
    my %info = $listview->GetItem($index);
    Data::Dump::dump(\%info);
}
__END__


On the other hand, if you are trying to get info about a listview item in a window that you haven't created, this is a little more involved (and probably not recommended). There is a previous post on this mailing list where someone wanted to access a toolbar in another application. Perhaps have a read of that post if this is what you are looking for.

Kevin.
hello all,
     I m trying to read the GUI and get the values.
there is a tab in GUI for which the Winspy shows the name as "syslistview32"
how will i read the values of this item .
kindly help
 
 
-shilpa
------------------------------------------------------------------------------ This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev
_______________________________________________ Perl-Win32-GUI-Users mailing list Perl-Win32-GUI-Users@... https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users http://perl-win32-gui.sourceforge.net/


------------------------------------------------------------------------------
This SF.net email is sponsored by

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
Perl-Win32-GUI-Users mailing list
Perl-Win32-GUI-Users@...
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
http://perl-win32-gui.sourceforge.net/