ID: 14516 Updated by: lobbin Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Closed Bug Type: COM related Operating System: win2k server (chinese) PHP Version: 4.0.6 New Comment:
No feedback. Closing. Previous Comments: ------------------------------------------------------------------------ [2001-12-14 10:10:49] [EMAIL PROTECTED] And try this: $doc = $word->Documents[1]; $doc->SaveAs("Useless test.doc") ------------------------------------------------------------------------ [2001-12-14 10:09:34] [EMAIL PROTECTED] Ah, btw, try latest 4.1.0 from http://php.net/downloads.php Feedback. ------------------------------------------------------------------------ [2001-12-14 10:08:51] [EMAIL PROTECTED] Changing Type. ------------------------------------------------------------------------ [2001-12-14 09:55:56] [EMAIL PROTECTED] when the code excuted on line: $word->Documents[1]->SaveAs("Useless test.doc"); It print out "Invoke() failed: ....". Nobody knows why. code is here: <? $word = new COM("word.application") or die("Unable to instanciate Word"); print "Loaded Word, version {$word->Version}\n"; //bring it to front $word->Visible = 1; //open an empty document $word->Documents->Add(); //do some weird stuff $word->Selection->Text="dfsdfs"; $word->Documents[1]->SaveAs("Useless test.doc"); //closing word $word->Quit(); //free the object $word->Release(); $word = null; ?> ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=14516&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]