in reply to ok, still tryna print!

Alex,

Try this

use Printer; use Data::Dumper; my $prn = new Printer('linux' => 'lp', 'MSWin32' => 'LPT1' ); my %data = $prn->list_printers; print Dumper %data;
That should tell you what is stored in the hash, and give you the means to figure problems like this out in the future

Data::Dumper has been an valuable tool for me.

Kristofer A. Hoch