Re: SAS AF Table Viewer and Data Model, select a row question.056 (3/4/2010 6:11:38 PM) comp.soft-sys.sas Hi, Here's one way: 1. Use the SAS data set model's _findRow method to find the row (_findRow uses WHERE clauses). 2. Use the table viewer control's _selectRow method to select the row. dcl list findList={... RandyHerbison
Re: Scroll to a particular column in viewtable #2034 (3/3/2010 9:44:36 PM) comp.soft-sys.sas Off-the-shelf, VIEWTABLE doesn't have an equivalent command to go directly to a variable by name. To scroll to another page of the form, you can: 1. Click on the earmarks at the top left/right of the form 2. I... RandyHerbison
Re: SAS AF and a TextPad Control question.1163 (3/3/2010 8:38:16 PM) comp.soft-sys.sas Sorry, I meant to write: Turn off the textpad control's horizontal scrollbar ...
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Randy Herbison
Sent: Wednes... RandyHerbison
Re: SAS AF and a TextPad Control question. #2024 (3/3/2010 8:14:52 PM) comp.soft-sys.sas The textpad control's text attribute is an SCL list. Each line of text is an SCL list item. You can use SCL list processing functions to read/write the text: do i=1 to listlen(textpad.text); text=getitemc(... RandyHerbison
Re: Drop down to SCL and R in your datastep #5022 (2/25/2010 9:55:16 PM) comp.soft-sys.sas " There are SCL commands that will create and compile new SCL entries." Yes, within the Display Manager such commands exist. The context here is EG. -----Original Message----- From: SAS(r) Discussion [mailto... RandyHerbison
Re: Drop down to SCL and R in your datastep #4935 (2/25/2010 4:28:07 PM) comp.soft-sys.sas Hi, Creating the catalog is easy. You can use the FILENAME statement's CATALOG access method to write the SCL source to a new catalog. But, I don 't know of a way to create the SCL entry from scratch. What ... RandyHerbison
Re: ODS, hatching the background029 (2/17/2010 6:47:21 PM) comp.soft-sys.sas Hi, This seems to work for the PDF destination, but not for the RTF destination (doesn't display image): ods listing close; ods pdf file="c:\temp\junk.pdf"; ods rtf file="c:\temp\junk.rtf"; data _null_; dcl ... RandyHerbison
Re: ODS data step object rtf,035 (2/15/2010 4:24:17 PM) comp.soft-sys.sas Hi, You may need to use different code for each destination. Unfortunately, absolute layout doesn't work with the RTF destination. Using a single-column gridded layout, without options, seems to get rid of a... RandyHerbison
Re: ODS data step object #5032 (2/11/2010 6:49:56 PM) comp.soft-sys.sas Hi, The ODS Report Writing Interface doesn't support the LISTING destination. Try closing the LISTING destination. That should get rid of the error messages. Not getting output when using only the format_te... RandyHerbison
Re: Unique Foreign Key Integrity Constraint? #7138 (2/9/2010 9:24:30 PM) comp.soft-sys.sas This seems to work, but it uses 2 variables for the constraints. Switching the order of the variables specified for the (2nd) constraint definition seems to do the trick: 409 proc datasets library=work nolis... RandyHerbison
SCL Editor in X-Windows2154 (11/19/2009 9:03:49 PM) comp.soft-sys.sas In the SCL Editor in X-Windows (under HP-UX) how can I select text and
then color it using command "COLOR MTEXT ORANGE" or some other color?
It appears that after a text is selected, it only remains selecte... walker.627(147)
Barchart with Graph Template Language1382 (11/20/2009 5:52:20 PM) comp.soft-sys.sas Hi there,
I was trying to create a barchart (type) by group (origin) using GTL using the following code. I would like the groups to be side-by-side rather than stacking on each other. So far I haven't found ... wy507(3)
Sas/af multiple select list box problem3220 (12/2/2009 12:26:29 PM) comp.soft-sys.sas Hi,
I was trying out af and came across this problem with the multi select list box. The list box contains a group of selected variables. But when I use the listbox.selecteditems, it just throw me a number i... goladin(478)
Password protection in SAS6619 (12/3/2009 12:46:23 AM) comp.soft-sys.sas Hi,
I am creating a report in SAS using ODS on a UNIX server.I want to password=
protect the file. I don't have any third party tools on UNIX. Is there a w=
ay to paword protect the file. The file needs to ... urbunti(28)
SAS/AF: Adjust Row Height in Table Viewer6165 (12/3/2009 5:25:33 PM) comp.soft-sys.sas Is it possible to adjust the row height either for specific rows or for
all rows in a table viewer?
The current behavior is that row heights are established automatically
according to the contents in the c... walker.627(147)
Grouped bar chart in new graphics2133 (1/12/2010 9:02:32 PM) comp.soft-sys.sas I am trying to make a group vertical bar chart with the new graphics in
v 9.2, Proc SGplot (?) I have data in a simple table
Year Transfer Mean
2000 Direct 21.1
2000 In 23.1
2000 Out... Richard.Hoskins(12)
Scroll to a particular column in viewtable1305 (3/3/2010 2:38:00 AM) comp.soft-sys.sas Hi,
SAS 9.1.3, DMS, Windows XP
Perhaps this is in the doc and I just can't find it. Hopefully the
functionality is there...
1) I miss the "=" command from fsview. Is there a way to
horizontally scr... sas_l_739(82)
SAS AF and a TextPad Control question.1322 (3/3/2010 3:48:39 AM) comp.soft-sys.sas I have a SAS AF screen with a textpad control on it. The user types in the box,
they can enter from one character up to 100 characters. The size of the textpad
on the screen means the text will wrap around at... Red
SAS AF Table Viewer and Data Model, select a row question.2252 (3/4/2010 3:43:42 AM) comp.soft-sys.sas I have a SAS AF Table Viewer with a Data Model displaying a SAS dataset very
nicely. In the SAS Help it says that a row on the table can be selected by SCL
at run time. My simple question is How? I want to be... Red