|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-12-14 09:55 UTC] ccy-chu at online dot sh dot cn
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;
?>
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 00:00:01 2025 UTC |
And try this: $doc = $word->Documents[1]; $doc->SaveAs("Useless test.doc")I am having the same problem: Here is my code: <?php //1. Instanciate Word $word = new COM("Word.Application") or die("Unable to instantiate Word"); //2. specify the MS Word template document (with Bookmark TODAYDATE inside) $template_file = "d:/test.doc"; //3. open the template document $word->Documents->Open($template_file); //4. get the current date MM/DD/YYYY $current_date = date("m/d/Y"); //5. get the bookmark and create a new MS Word Range (to enable text substitution) $bookmarkname = "reqNum"; $objBookmark = $word->ActiveDocument->Bookmarks($bookmarkname); $range = $objBookmark->Range; //6. now substitute the bookmark with actual value $range->Text = $current_date; //7. save the template as a new document (D:\est\NEW_est.doc) $newFile = "d:/test.doc"; $doc = $word->Documents[1]; //error here $doc->Save("test.doc"); //error here //8. free the object $word->Quit(); $word->Release(); $word = null; ?> I am trying some code from another site but I can't seem to get it to work properly... I continue to get the same error: Warning: (null)(): Invoke() failed: Type mismatch. Argument: 2 in D:\wwwroot\test.php on line 19 I tried everything and I am very new to PHP.... can someone help please....