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
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