Re: insert picture in Word using Perl OLE

2004-10-18 Thread work
Quoting just me <[EMAIL PROTECTED]>: > . > $msword->{Visible} = 1 ; > $msword->{DisplayAlerts} = 1 ; > my $doc1 = $msword->Documents->Add() ; > $doc1->Shapes->AddPicture("D:\logo.gif",0,1); > > ... > > The picture doesn't show up in the word doc. > Is this the correct wh

insert picture in Word using Perl OLE

2004-10-18 Thread just me
hi i am trying out Win32::OLE to insert a picture to a Word doc. . $msword->{Visible} = 1 ; $msword->{DisplayAlerts} = 1 ; my $doc1 = $msword->Documents->Add() ; $doc1->Shapes->AddPicture("D:\logo.gif",0,1); ... The picture doesn't show up in the word doc. Is this the