in reply to wrestling with .NET application via perl

I would try the following (as gleaned from the Win32::OLE documentation):

Win32::OLE->Initialize(Win32::OLE::COINIT_OLEINITIALIZE)

If that doesn't work, the other way already recommended is using Win32::API and calling OleInitialize yourself. That will bring different problems if Win32::OLE thinks it's the only one making OLE calls.

Replies are listed 'Best First'.
Re^2: wrestling with .NET application via perl
by trillich (Sexton) on Sep 28, 2007 at 11:38 UTC
    blessings upon you and your horse and the road you rode in on. :) works a treat! thanks a ton!