in reply to Re: blessed object containing reference to hash
in thread blessed object containing reference to hash

well I guess I am retarded... removed the brackets around find and it works. wonder how I missed that one. I am using
Excel::Tabbed->connect('file');
the reason for the export I was trying to
use Excel::Tabbed; my $thingy = connect('file');
thanks for you assistance.

Replies are listed 'Best First'.
Re^3: blessed object containing reference to hash
by TedYoung (Deacon) on Jan 04, 2005 at 16:26 UTC

    I thought that you might be shooting for connect('file'). That won't work, because you won't be handed a package name as your first param. The most common approach is Excel::Tabbed->connect('file');

    Ted Young

    ($$<<$$=>$$<=>$$<=$$>>$$) always returns 1. :-)
      it only took about 40 minutes for me to figure that one out. But I am sure Ill remember next time : )