Help for this page

Select Code to Download


  1. or download this
    use Win32::OLE qw(in with);
    use Win32::OLE::Const 'Microsoft Word';
    ...
    $Word->Selection->TypeText ({ Text => $mytxt});
    $Word->Selection->MoveRight({Count => 1});
    $Word->Selection->TypeText ({ Text => "A little more text"});
    
  2. or download this
    use strict;
    use Win32::OLE qw(in with);
    ...
       
    my $NewSlide = $Slide->Duplicate();
       $NewSlide->{Name} = "Slide2";
    
  3. or download this
    use Win32::OLE qw(in with);
    use Win32::OLE::Const 'Microsoft Outlook';
    ...
               $atch->SaveAsFile($filename);
           }
       }