:
> Hi...
>
> I have this code
>
> use Win32::OLE;
> my ($t_row, $t_col) = (4,3);
> my $word = Win32::OLE->CreateObject("Word.Application");
> $word->{Visible} = 1;
> my $doc = $word->Documents->Add;
> my $table = $doc->Tables->Add($word->S
; my ($t_row, $t_col) = (4,3);
> my $word = Win32::OLE->CreateObject("Word.Application");
> $word->{Visible} = 1;
> my $doc = $word->Documents->Add;
> my $table = $doc->Tables->Add($word->Selection->Range,$t_row, $t_col);
> $table->Select();
>
Hi...
I have this code
use Win32::OLE;
my ($t_row, $t_col) = (4,3);
my $word = Win32::OLE->CreateObject("Word.Application");
$word->{Visible} = 1;
my $doc = $word->Documents->Add;
my $table = $doc->Tables->Add($word->Selection->Range,$t_row, $t_col);
$t
Michael D. Risser [[EMAIL PROTECTED]] quoth:
*>I have searched CPAN, but so far no luck. Does anyone know of a module or
*>Perl script that can parse MS Word .doc files?
*>
*>I'm trying to add the ability to display these files in a web browser to a
*>document managment system I found on the web
I have searched CPAN, but so far no luck. Does anyone know of a module or
Perl script that can parse MS Word .doc files?
I'm trying to add the ability to display these files in a web browser to a
document managment system I found on the web.
Thanks in advance
--
To unsubscribe, e-mail: [EMAI
$sheet->Range("A1:B11")->Select();
$sheet->Range("A1:B11")->Copy();
#paste into the word doc:
$doc->Words->Last->Select();
$wd->Selection->Paste();
$doc->Words->Last->Select();
$wd->Selection->InsertAfter("End of our document\n")
I would be in much apreciation to whomever could point me to a good learning on
formating output, but using standard fonts.
even PCL would be ok. My ultimate goal is a word doc converter if some one knows of a
good pm. Please let me know thanks.