|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-11-14 09:44 UTC] adam dot tallon at version1 dot com
-PHP Version: Irrelevant
+PHP Version: 5
[2013-11-14 09:44 UTC] adam dot tallon at version1 dot com
[2013-11-14 18:16 UTC] requinix@php.net
-Status: Open
+Status: Feedback
[2013-11-14 18:16 UTC] requinix@php.net
[2013-11-15 09:12 UTC] adam dot tallon at version1 dot com
[2013-11-15 09:22 UTC] adam dot tallon at version1 dot com
[2013-11-15 19:15 UTC] requinix@php.net
[2014-05-08 16:19 UTC] ab@php.net
[2014-12-30 10:42 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 15:00:01 2025 UTC |
Description: ------------ Moving from PHP 4 to PHP 5 and the below works fine in PHP 4, now on PHP 5, regardless what version and the below line fails with the error underneath it. If the line is changed to FALSE it will generate the file with no border shadow on tables. @$vTable->Borders->Shadow = TRUE; Fatal error: Uncaught exception 'com_exception' with message 'Source: Microsoft Word Description: Command failed' in genworddoc_class.php:436 Stack trace: #0 genworddoc_class.php(436): genWordDoc::addFormattedTable7() #1 genworddoc_class.php(330): genWordDoc->addFormattedTable7('BULK_TABL...', 1, 5, Array, Array, Array) #2 c_generate_correspondence.php(444): genWordDoc->addTableArrayObjectsToTemplate('BULK_TABL...', Array, Array, NULL, NULL, Array) #3 main.php(190): include('C:\htdocs\...') #4 index.php(6): include('C:\htdocs\...') #5 {main} thrown in genworddoc_class.php on line 436 Test script: --------------- $vObjBookmark = $this->mWord->ActiveDocument->Bookmarks($pBookmarkName); $vRange = $vObjBookmark->Range; $vTable = $this->mWord->ActiveDocument->Tables->Add($vRange, 2, 2, 0, 2); @$vTable->Borders->Shadow = TRUE; $vTable->AllowAutoFit = 1; $vTable->AutoFitBehavior(0); Expected result: ---------------- Generated document with tables that have a border shadow on them. Actual result: -------------- No document generated, error thrown in logs at border->shadow line of code, blank page displayed.