Ok...
it's only a test.
Luiz Fernando
Alain Samoun <[EMAIL PROTECTED]> escreveu nas notÃcias de
mensagem:[EMAIL PROTECTED]
> Fernando:
> Your script is fine, it should work on your server but, of course, do not
> expect to open word on the client side
> Alain
>
> On Tue, Jul 24, 2001 at 11
Fernando:
Your script is fine, it should work on your server but, of course, do not
expect to open word on the client side
Alain
On Tue, Jul 24, 2001 at 11:49:04AM +0100, Luiz Fernando Tuca" wrote:
> A take a sample of function COM.
>
> $word = new COM("word.application") or die("Unable to i
A take a sample of function COM.
$word = new COM("word.application") or die("Unable to instanciate Word");
print "Loaded Word, version {$word->Version}\n";
$word->Visible = 1; // command that show window
$word->Documents->Add();
$word->Selection->TypeText("This is a test...");
$word->Documents[1]