Help for this page

Select Code to Download


  1. or download this
    #!/perl/bin/perl -w
    use Win32::OLE qw(in with);
    ...
    $xlImport->Activate();
    $Excel->{'Visible'} = 1;
    my $cell= $xlImport->Cells(1,1)->{Value};
    
  2. or download this
    $Excel = Win32::OLE->GetActiveObject('Excel.Application') || Win32::OL
    +E->new('Excel.Application', 'Quit');