[PHP] Re: PHP and COM - Syntax question

2002-01-18 Thread J Wynia
Figured it out. Pulled out the -Close() and had the quit() just override the save. Here's the new function in case anyone cares. function spellcheck($string){ $word = new COM(word.application) or die(Unable to instanciate Word); $word-Visible = 0; $word-Documents-Add();

[PHP] Re: PHP and COM - Syntax question

2002-01-18 Thread J Wynia
Hopefully this is my last reply on this thread. I discovered after opening Word normally after a few dozen tests, that it tried to recover all those lost documents. The following demo script has that fixed. ?php function spellcheck($string){ $word = new COM(word.application) or die(The