|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-02-03 16:17 UTC] wharmby@php.net
[2007-02-11 01:00 UTC] php-bugs at lists dot php dot net
[2007-06-19 13:35 UTC] klemen at breg dot si
[2009-12-24 05:12 UTC] imyhchou at gmail dot com
[2012-02-03 07:20 UTC] amreshsinghmca at gmail dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 28 10:00:01 2025 UTC |
Description: ------------ Fatal Exeption on new COM("Word.Application") Reproduce code: --------------- Very well known example for testing "word.Application" COM object. my line 13 is: $word = new COM("Word.Application"); ... the same as expected $word->Documents->Add(); Expected result: ---------------- Creation of new test word file. Actual result: -------------- Fatal error: Uncaught exception 'com_exception' with message '<b>Source:</b> Microsoft Word<br/><b>Description:</b> Could not open macro storage.' in D:\dir\com.php:13 Stack trace: #0 D:\dir\com.php(13): variant->Add() #1 {main} thrown in D:\dir\com.php on line 13 What does that means?