What???? I am sorry, but you do not have to create custom ActiveX components to access Excel/Access/Word from Perl. These already exist for you and they work very well.
May I introduce you to the Win32 libraries which contain the OLE object? The code to access Excel looks something like so:
use Win32::OLE;
$class = "Excel.Application";
$File = qq(c:\\temp\\Mytext.xls);
$Excel = Win32::OLE->GetActiveObject($Class);
$Excel->(Visible);
Now, the underlying mechanics of Win32 actually involve DLLs that are performing the low level calls to Windows resources, but why reinvent the wheel? Roth even offers you source code at his site. His book shows you how to extend Perl for Win32 as well.
For more information, look up Win32 at CPAN or buy Windows NT Win32 Perl Programming by Dave Roth.
Celebrate Intellectual Diversity |