php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #23226 After creating Winword COM object and calling Quit, winword.exe doesn't quit
Submitted: 2003-04-15 08:06 UTC Modified: 2003-04-15 10:57 UTC
From: dominik dot lebar at ensico dot si Assigned:
Status: Not a bug Package: COM related
PHP Version: 4.3.2RC1 OS: Windows NT 4.0, Service pack 6a
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: dominik dot lebar at ensico dot si
New email:
PHP Version: OS:

 

 [2003-04-15 08:06 UTC] dominik dot lebar at ensico dot si
This script does not exit winword.exe process :

$word = new COM("word.application") or die("Unable ... ");
$word->Visible = 1;
$word->Documents->Add( $source );
$doc = $word->Documents[1];
$doc->Activate( );
$word->Release();
$word->Quit();
$word = null;


I'm using Apache/2.0.45.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-04-15 10:25 UTC] phanto@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions. 

Thank you for your interest in PHP.

ever wondered why release is called release and what you should *not* do after a release call ?
 [2003-04-15 10:57 UTC] dominik dot lebar at ensico dot si
I agree. Close the thread. I have solved the problem.
Best regards,
  Dominik
 [2010-05-17 10:18 UTC] hilerchyn at 163 dot com
i have a problem  the same as u
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 12:01:28 2024 UTC