Help for this page

Select Code to Download


  1. or download this
    my $rpt = GTIMs::Report->new('Schedule::Daily', $args);
    $rpt->create;   # populate the workbook with data
    ...
        $copies = 1 unless $copies;
        $self->{WorkBook}->PrintOut(Copies => 1);
    }
    
  2. or download this
       with ($Sheet->PageSetup,
            LeftHeader => '',
    ...
            PrintTitleRows => '$1:$2',
            PrintTitleColumns => '$A:$D',
        );
    
  3. or download this
    use constant xlDialogPrint => 8;
    
    ...
        my $dlg = $self->{Excel}->Dialogs(xlDialogPrint);
        my $response = $dlg->Show;
    }