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 (September 1997, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 19 Sep 1997 02:16:24 GMT
Reply-To:     Xlr82sas <xlr82sas@AOL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:         Xlr82sas <xlr82sas@AOL.COM>
Organization: AOL http://www.aol.com
Subject:      Expanding Sas DMS editor to 255 characters

Hi SAS-Lers,

THIS LILLE OBJECT EXPANDS THE SAS DMS EDITOR TO A WIDTH OF 255 CHARACTERS

The code is also on my website.

I realize this code is trivial, but indexing and documenting it will prevent reinventing the wheel.

%macro utlxpne ( utitle=Expand DMS editor to 255 characters, uobj = utlxpne,

/*-----------------------------------*\ | INPUTS INTERNAL | \*-----------------------------------*/

/*-----------------------------------*\ | PROCESS | | THIS LILLE OBJECT EXPANDS | | THE SAS DMS EDITOR TO A WIDTH | | OF 255 CHARACTERS | \*-----------------------------------*/

/*-----------------------------------*\ | OUTPUTS | | SINGLE LINE OF 255 'x'z | \*-----------------------------------*/

) / des = "Expand DMS editor to 255 characters";

/*-----------------------------------*\ | | | AUTHOR ROGER DEANGELIS 09AUG97 | | | | COMPUCRAFT INC. | | 49 SPACKENKILL RD | | POUGHKEEPSIE, NY 12603 | | | | OFC: 914-463-2770 | | FAX 914-462-7595 | | | | COMPUCRAFT IS NOT RESPONSIBLE FOR | | PROBLEMS ASSOCIATED WITH THIS CODE.| | | | WIN95 SAS612 | | | | USERS ARE FREE TO DO WHATEVER | | THEY WANT WITH THIS CODE. | | | | I PUT THIS CODE IN THE PUBLIC | | DOMAIN. | | | \*-----------------------------------*/

filename longline catalog "work.longline.longline.catams";

data _null_;

file longline lrecl=255 recfm=f;

x=repeat('x',126);

put x x;

run;

dm "inc longline";

%mend utlxpne;

%utlxpne;

Roger J DeAngelis CompuCraft Inc XLR82SAS@aol.com ( Accelerate to SAS ) http://members.aol.com/xlr82sas/utl.html


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