Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I Create a power point file MS word file using com object. Please give some example for that.I tried with few things .But i Can't find the file in my system

The sample code is given below

$word = new COM("word.application") or die ("couldnt create an instance of word"); 
echo "loaded , word version{$word->version}"; 

$word->visible = 1; 

$word->Documents->Add(); 

$word->Selection->TypeText("this is some sample text in the document"); 

$word->Documents[1]->SaveAs("sampleword.doc"); 

$word->Quit(); 

$word->Release(); 
$word = null; 
share|improve this question

1 Answer

Try to set full path

$word->Documents[1]->SaveAs("C:\\Users\\UserNameHere\\MyDocuments\\sampleword.doc"); 
share|improve this answer
Thanks Sergey .Can I change the file properties like name author etc – FlexiDev May 30 '12 at 8:37
@FlexiDev, Do U read documents about DOM? word.application? – Sergey May 30 '12 at 9:38
@Sergy,Sorry ,I have using com object,but i don't know DOM calss..Can u give some sample code for that – FlexiDev May 30 '12 at 11:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.