> My next question would be, does anyone know how I can set it so > that if the > line contains the word Failed in it, it will be highlighted? There doesnt > seem to be any documentation on ListView::Item, which is what I thought I > would use. Any insight would be greatly appreciated.
and Johan Lindström wrote: > I'm not aware that it's supported. I am pretty sure that coloring single lines in a listview is not possible. The GUI packages uses the standard-windows controls and I've never seen a listview with a single line colored. To be sure you can always check the microsoft documentation ( http://msdn.microsoft.com ) on the standard controls. > I would suggest using a RichText control > instead. It supports color on selected parts of the text. I agree although it's a little harder. Another idea would be to make those items Bold. I believe you can do this by my $item = $list->AddItem ( -name => 'foo', # .... etc -bold => 1, ); Roelof