ID:               32161
 Updated by:       [EMAIL PROTECTED]
 Reported By:      baoshi dot zhu at gmail dot com
-Status:           Feedback
+Status:           No Feedback
 Bug Type:         COM related
 Operating System: Windows XP/2000
 PHP Version:      5.0.3
 New Comment:

No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.




Previous Comments:
------------------------------------------------------------------------

[2005-03-04 16:39:28] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php5-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5-win32-latest.zip



------------------------------------------------------------------------

[2005-03-02 03:24:03] baoshi dot zhu at gmail dot com

Description:
------------
When a COM exception occurs, the error message produced by COM
application can be obtained from 'message' in com_exception object.
However the string is truncated with some characters wrapping to the
front.

Reproduce code:
---------------
 try {
        $word = new COM("word.application"); 
        $doc = $word->Documents->Open($docfile);
        $doc->Activate();
        $doc->PrintOut();
        $doc->Close();
       $word->Quit();
    } catch (com_exception $e) {
        if ($doc) $doc->Close();
        if ($word) $word->Quit();
        print "Error occured at " . $e->getFile() . "(" . $e->getLine()
. ")\n";
        print $e->getMessage() . "\n";
    }

Expected result:
----------------
If $docfile does not exists, VBA will return

Error: This file could not be found.
Try one or more of the following:
*Check the spelling of the name of the document.
*Try a different file name. (c:\test1.doc)



Actual result:
--------------
Description: This file could not be found.
Try one or more of the following:
* Check the spelling of the name of the document.
 (C:\test1.doc)nt file name.
 ^^^^^^^^^^^^^^


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=32161&edit=1

Reply via email to