All pastes #338618 Raw Edit

Mine

public text v1 · immutable
#338618 ·published 2007-02-03 16:11 UTC
rendered paste body
<?php
// starting word
$word = new COM("word.application") or die("Unable to instantiate Word");
echo "Loaded Word, version {$word->Version}<br>\n";  


//bring it to front
$word->Visible = 1;

//open an empty document
$word->Documents->Add();

//do some weird stuff 
$word->Selection->TypeText("here is some smaple text ");
$word->Documents[1]->SaveAs("c:/Temp/Useless2.doc"); 

//closing word
$word->Quit();

//free the object
$word = null; 
?>