You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
292 B

27 years ago
27 years ago
  1. <?
  2. $word = new COM("word.application") or die("Unable to instanciate Word");
  3. print "Loaded Word, version {$word->Version}\n";
  4. $word->Visible = 1;
  5. $word->Documents->Add();
  6. $word->Selection->TypeText("This is a test...");
  7. $word->Quit();
  8. /*
  9. $word->Documents[1]->SaveAs("Useless test.doc");
  10. */
  11. ?>