Re: Create, Merge and work with tables in MS WOrd Documents Win32::Ole

2012-04-12 Thread timothy adigun
: > 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

Re: Create, Merge and work with tables in MS WOrd Documents Win32::Ole

2012-04-12 Thread Somu
; 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(); >

Create, Merge and work with tables in MS WOrd Documents Win32::Ole

2012-04-12 Thread Raito Garcia
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

Re: Microsoft Word Documents

2002-03-13 Thread Elaine -HFB- Ashton
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

Microsoft Word Documents

2002-03-13 Thread Michael D. Risser
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

RE: Word documents

2002-02-03 Thread Steve Howard
$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")

Word documents

2002-02-03 Thread Guru^garzaH
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.