Help for this page

Select Code to Download


  1. or download this
    Set WordObj = CreateObject("Word.Basic")
    WordObj.FileNew
    WordObj.EditClear
    
  2. or download this
    use OLE;
    my $wordObj = OLE->CreateObject("Word.Basic");
    $wordObj->FileNew;
    $wordObj->EditClear;
    
  3. or download this
    | wordObj |
    wordObj := OLE createObject: 'Word.Basic'.
    wordObj fileNew; editClear.