Hello, I am trying to get a small test program to work. It is supposed to start a instance of Word, show the program (visible = 1) and open a document. But it never shows the word application, it just starts new processes (task manager) that cannot be ended.
What is wrong?
Test program:
Version}\n”;
$word->Visible = 1;
$word->Documents->Add();
$word->Selection->TypeText(“This is a test…”);
// $word->Documents[1]->SaveAs(“Useless test.doc”);
// $word->Quit();
?>