LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (October 2000, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 2 Oct 2000 11:24:58 -0400
Reply-To:     barrere Bendia <bendiabare@NETSCAPE.NET>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         barrere Bendia <bendiabare@NETSCAPE.NET>
Subject:      Creating  a file with extention ".pdf"
Comments: To: rush_d@tecassociates.com
Content-Type: text/plain; charset="us-ascii"

Hi there. I wante juste create a file with extention ".pdf". Is the following right?

options sysprint='D:\sas\adobetest.pdf' 'Acrobat PDFWriter'; filename pdf printer; data _null_; file pdf print notitles; array red{30} $ red1-red30; do j=1 to 30; do i=1 to 30; red{i}=i; end; put @1 red1 @7 red2 @13 red3 @19 red4 @25 red5 @31 red6 @37 red7; end; run;

IT DOESN'T WORK. THANKS A LOT.


Back to: Top of message | Previous page | Main SAS-L page