in reply to Re^2: Win32:OLE -> difference between English and German Excel
in thread Win32:OLE -> difference between English and German Excel

Below code is tested and verified on ActiveState 5.8.0 with Excel 97'

#!/Perl/bin/perl use strict; use warnings; use Win32::OLE; use Win32::OLE::Const; my $xl = Win32::OLE->new('Excel.Application'); my $xlConst = Win32::OLE::Const->Load('Microsoft Excel 8.0 Object Libr +ary'); print $xl->International($$xlConst{'xlUpperCaseColumnLetter'}); print $xl->International($$xlConst{'xlUpperCaseRowLetter'});