in reply to Re^2: HOW to call a Excel Macro subroutine from perl
in thread HOW to call a Excel Macro subroutine from perl

marlboroguy58:

It's rather difficult to find the error without seeing the code. My best (blind) guess would be that you should simply skip the creation of the excel object after the first invocation. Something like:

$XL = ExcelObject(...) unless $XL;
...roboticus

Replies are listed 'Best First'.
Re^4: HOW to call a Excel Macro subroutine from perl
by marlboroguy58 (Novice) on Apr 16, 2007 at 04:36 UTC
    works! thanx a lot enlightened one.