Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...I love this site! It's so nice to know that there are so many people out there who are willing to share their knowledge..."

Geography

Where in the world do Tek-Tips members come from?

Pulling data from PERL to a rtf file

knlarson10 (Programmer)
29 Jun 12 12:58
So I am a fairly new to the PERL programming language and have ran into a problem so help would be greatly appreciated.

I am trying to create a rtf file that is generated from my Perl script that outputs numbers. I have figured out how to write a rtf file, but now I cannot pull the data. This is what I have tried.

use strict;

my $Perlscript = "/home/bunnies/Autoperl.pl";

my $file_to_open = $ARGV[0];

open (FILE, ">$file_to_open") || die("can't open $file_to_open: $!");

print FILE <<'END';
{\rtf1\adeflang1025\ansi\ansicpg125 (etc of the rtf script)
END
print wrote rtf;

use strict;
open (FILE, ">$Perlscript") || die("can't open $Perlscript: $!");
print $Events{HOG}{SIM2}{TIME};

close FILE;

Error message I receive Execution of /home/bunnies/part1rtf.rtf aborted due to compilation errors.
dmazzini (Programmer)
6 Jul 12 13:02
Check this link, they use Win32::OLE to manipulate the doc file.

http://snipplr.com/view/16746/

dmazzini
GSM/UMTS System and Telecomm Consultant

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Back To Forum

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close