in reply to coding for excel in perl

Just to let everyone know ...

Given:

$Excel = Win32::OLE->new('Excel.Application');
The VBA code "Application.CutCopyMode = False" in perl is:
$Excel->{CutCopyMode} = 0;
Thanks to all who responded, especially davies.

ruxer