StrawberryPerl v 5.014 と Win32::OLE を使用して、Windows 7 システムでプロジェクトに取り組んでいます。
Windows XP SP3 を実行する 2 台目の PC を使用して、同じプロジェクトを並行して開発しようとしています。新しいシステムに Strawberry Perl v 5.016 をインストールし、cpanp を使用して Win32::OLE と Win32::OLE::Const をインストールしました。
新しいシステムでも同じスクリプト ソースを使用しています。
新しいシステムでは、どういうわけか
use Win32::OLE::Const 'Microsoft Excel';
は効果がありません。エラーが発生しています:
Bareword "xlExcel8" not allowed while "strict subs" in use in StatementExcel.pm line 159.
このエラーは、私が言及した最初の元のシステムでは表示されません。
何をすべきか?
ティア、ヘレン
プログラムからの抜粋は次のとおりです。
package StatementExcel;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(LoadExcel ProcessPreparedSheet);
use strict;
use warnings;
use Encode;
use 5.016;
use utf8;
use Win32::Console;
use autodie;
use warnings qw< FATAL utf8 >;
use StateConversion;
use Carp;
use Win32::OLE qw(CP_UTF8);
use Win32::OLE::Const 'Microsoft Excel';
use Cwd;
use Text::CSV::Unicode;
use File::BOM qw( :all );
use List::MoreUtils 'first_index';
...
$xlBook -> SaveAs( $xlFile, xlExcel8);
$i = Win32::OLE->LastError();
if ($i) {
PrintT $parms{LogStructRef}{HANDLE}, "Error trying to save Excel file:\n", $i;
} # end if ($i)
PrintT $parms{LogStructRef}{HANDLE}, 'Press <return> to continue...'; # Wait for user input...
$j = <STDIN>;
# Clean up
$xlBook->{Saved} = 1;
$xlApp->Quit;
$xlBook = 0;
$xlApp = 0;
...
注: PerlMonks に相互投稿: http://www.perlmonks.org/?node_id=985596