[PHP-WIN] Re: MS Word COM Object formatting

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



you should be able to ... in word ... open up the html page from word
itself, and then save it as a word doc... thinking in my head, soemthing
along the lines of...

$file="bios.html"
$word=new COM("Word.Application") or die("Cannot start word for you");
$word->visible =0 ;
$word->Documents->Open($file);
$word->Documents[1]->SaveAs("testwrite.doc");
$word->Quit();


in theory, should work... although i could be wrong...



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [PHP Database Programming]     [PHP Install]     [Kernel Newbies]     [Yosemite Forum]     [PHP Books]

  Powered by Linux