in reply to Accessing COM Objects from Perl
my $rs = $Server->CreateObject("ADODB.Recordset");
You can do:
If you are just looking for an object in a normal shebang script, then try CPAN / ActiveState documentation.my $ea = $Server->CreateObject("Excel.Application"); #or any other sort of COM object reference #look in your registry to see what you have
|
|---|