Aldo,

I tried what you suggested and I got the following error:

Your vendor has not defined Win32::GUI macro ItemInfo, used at gatrbase.pl line 796: 
at C:\Perl\lib/Win32/GUI.pm line
361.

Also thanks for your help on the menu question but I already figured that one out on 
my own.  ;]

Jonathan
--------------------------------------------------------------
Jonathan Southwick                              [EMAIL PROTECTED]
Technical and Network Services
Allegheny College
Meadville, PA  16335                             814-332-2755


----- Original Message -----
From: "Aldo Calpini" <[EMAIL PROTECTED]>
To: "Jonathan Southwick" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, October 13, 2000 12:06 PM
Subject: Re: [perl-win32-gui] still having problems


> Jonathan Southwick wrote:
> > I have a ListView with 6 columns displayed in "detail" view.
> > What I am wanting to do is click on an item in the ListView
> > and be able to read the data in that particular row.
> > Does anyone know how to do this?
>
> sorry Jonathan, what do you mean by "read"?
>
> if you mean read them in perl variables, here's how you go:
>
>    %item = $ListView->ItemInfo( $index );
>    $col1 = $item{-text};
>    %item = $ListView->ItemInfo( $index, 1 );
>    $col2 = $item{-text};
>    %item = $ListView->ItemInfo( $index, 2 );
>    $col3 = $item{-text};
>    # and so on...
>
>
> cheers,
> Aldo
>
> __END__
> $_=q,just perl,,s, , another ,,s,$, hacker,,print;
>
>
>
>

Reply via email to