http://www.perlmonks.org?node_id=511489


in reply to Using Win32::OLE and Excel - Tips and Tricks

Thanks for the article. The following code doesn't work on my machine:
my @edges = qw (xlEdgeBottom xlEdgeLeft xlEdgeRight xlEdgeTop xlI +nsideHorizontal xlInsideVertical); $range = "b1:c56"; foreach my $edge (@edges){ with (my $Borders = $Sheet->Range($range)->Borders(eval($edge)), LineStyle =>xlContinuous, Weight => xlThin , ColorIndex => 1); }
I'm using ActivePerl 5.8.7. No error messages were encountered. Thanks in advance.

Replies are listed 'Best First'.
Re^2: Using Win32::OLE and Excel - Tips and Tricks
by Anonymous Monk on Nov 15, 2007 at 17:21 UTC
    Perl not able to Recognise the Border Function So please use Win32::OLE::Const 'Microsoft Excel'; It helps to resolve the issue