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 (May 2003, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 30 May 2003 09:15:02 -0400
Reply-To:     "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Subject:      Re: Is there a way to suppress command line in display?

"nick" <nick.steelmach@EMAIL.COM> wrote in message news:200305300450.h4U4oGp07891@listserv.cc.uga.edu... > Dear SAS-lers, > > I only have base SAS v.8.2 (Windows). I'm using "display window" that > always presents a command line in addition to the fields that i created for > data entry. Not only it is annoying, but also it allows the user to sneak > through the input screen. Is there a way to suppress it? > > Thank you in advance for the advice, > Nick

No. There is no way to suppress the command line shown in the window opened by DISPLAY or %DISPLAY.

If you have SAS/FSP, you can use FSEDIT to create an input screen, or you can use FSVIEW to define formulas that validate input.

If you have SAS/AF you can build a frame for data input.

If you have Base ;), you might use viewtable to create a new table: VT;NEW

You could write an app in another language (vb, vc, java, tcl, perl, etc...) that does the 'window'. You would have to - run the app using SYSTEM() and pass info back and forth using a file, or - run the app using a filename pipe and pass info back and forth using std-in (or command line args) and reading std-out.

You could write a reusable program in another language that parses a WINDOW or %WINDOW statement :)

-- Richard A. DeVenezia, http://www.devenezia.com


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