Hey
I use this to type some text in a Word document (using PHP)
<?
$Ms_Word = new COM("word.application") or die("error");
$Ms_Word->Visible = 0;
$Ms_Word->Documents->Add();
$txt = "Lets type this...";
$Ms_Word->Selection->TypeText($txt);
$Ms_Word->Quit();
$word = null;
?>
But I don't know how to change the font-color, font-type, font-size etc..
Does anyone know how to do this?
Thx, Ron