in reply to ok, still tryna print!
Alex,
Try this
That should tell you what is stored in the hash, and give you the means to figure problems like this out in the futureuse Printer; use Data::Dumper; my $prn = new Printer('linux' => 'lp', 'MSWin32' => 'LPT1' ); my %data = $prn->list_printers; print Dumper %data;
Data::Dumper has been an valuable tool for me.
Kristofer A. Hoch
|
|---|