On Wed, 25 Jun 2003 19:13:06 -0500, Steven Swenson <[EMAIL PROTECTED]> said:

> I am trying to insert some text into a listview.
> 
>   my %item = ( -item=> 0,-text => "$text");
>   $listview->InsertItem (\%item);

When sending options, you should not use a hash reference.
Instead, send the "whole" hash, e.g.

$listview->InsertItem (%item);

erick

Reply via email to