[PHP] Zend Sudio's Optimizer / PHP 5.1.1

2005-12-02 Thread Joseph Crawford
;( is there something else i need to change in zend studio server? Thanks, -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. 1-802-671-2021 [EMAIL PROTECTED]

Re: [PHP] Fwd: Code Optimization Help

2005-09-20 Thread Joseph Crawford
-> '.$this->obj->ActiveDocument->Name().' Document Closed.'); $this->obj->ActiveDocument->Close(); } Any help with this would be appreciated. I am not sure why it is choosing to hang today ;( I have been going through the COM object API documentation and i dont see myself doing anything i shouldnt be doing. You can see the full code here http://pastebin.com/369068 that is if it hasnt expired, if so send a reply and i will post again ;) Thanks in advance -- Joseph Crawford Jr. Codebowl Solutions, Inc. 1-802-671-2021 [EMAIL PROTECTED]

Re: [PHP] Fwd: Code Optimization Help

2005-09-20 Thread Joseph Crawford
I am not sure where you got the idea that it is creating an instance of word for every record, but it creates one instance then loops through the records using that one instance. On 9/20/05, Jochem Maas <[EMAIL PROTECTED]> wrote: > > Joseph Crawford wrote: > > Hello Everyo

[PHP] Fwd: Code Optimization Help

2005-09-20 Thread Joseph Crawford
;Release(); } private function CreateDocument($template) { $this->obj = new COM("word.application"); if(!is_object($this->obj)) throw new Exception('Unable to instanciate Word!'); $this->obj->Documents->Open($this->mm_data_dir.'/'.$template.'.dot')