- 论坛徽章:
- 0
|
本帖最后由 yhou31 于 2015-05-14 16:16 编辑
use Win32::OLE qw(in with);
use Win32::OLE::Const 'Microsoft Excel';
$Win32::OLE::Warn = 3; # die on errors...
my $Excel;
eval { $Excel = Win32::OLE->GetActiveObject('Excel.Application') };
我想知道GetActiveObject方法的实现内容是体现在哪个文件里面?我在perl\lib\win32\ole.pm文件中,没有发现。只有对该方法的介绍:
=item Win32::OLE->GetActiveObject(CLASS[, DESTRUCTOR])
The GetActiveObject() class method returns an OLE reference to a
running instance of the specified OLE automation server. It returns
C<undef> if the server is not currently active. It will croak if
the class is not even registered. The optional DESTRUCTOR method takes
either a method name or a code reference. It is executed when the last
reference to this object goes away. It is generally considered C<impolite>
to stop applications that you did not start yourself. |
|