in reply to Using COM in Perl

Isn't it the _Value_ of $rsFollow->{'Book Title'} you want to print? Like $rsFollow->{'Book Title'}->{Value}.

$rsFollow->{'Book Title'} has _many_ other attributes, like Name, Type and Status. I think VB assumes that it is the Value you want to print, while Perl don't.

You can print the all the attributes of it with:
foreach (keys %{$rsFollow->{'Book Title'}}) { print $_."\n"; }


/brother t0mas

Replies are listed 'Best First'.
Re (2): Using COM in Perl
by RatArsed (Monk) on Aug 14, 2001 at 15:56 UTC
    And there was me thinking it was bitching about not knowing about the default collection or something(!)

    Many thanks...

    --
    RatArsed