Re: [PHP-WIN] Problem in funcition COM

2001-07-26 Thread Luiz Fernando \(Tuca\)
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

Re: [PHP-WIN] Problem in funcition COM

2001-07-24 Thread Alain Samoun
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

[PHP-WIN] Problem in funcition COM

2001-07-24 Thread Luiz Fernando \(Tuca\)
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]