Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Win32 - M$ Outlook and Perl.

by Mr. Muskrat (Canon)
on May 06, 2002 at 20:59 UTC ( [id://164449]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        With ActiveSheet.PageSetup
            .PrintTitleRows = "$1:$2"
            .PrintTitleColumns = ""
            .PrintArea = "$B:$I"
        End With
    
  2. or download this
    my $pl = "";
    open(TXT, "<mymacro.txt");
    ...
    open(TXT, ">mymacro.pl");
    print TXT $pl;
    close(TXT);
    
  3. or download this
    $Range = $ActiveSheet->PageSetup;
    with ($Range,
    ...
        PrintTitleColumns => '',
        PrintArea => '$B:$I',
    );
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://164449]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-12-07 14:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which IDE have you been most impressed by?













    Results (50 votes). Check out past polls.