| Date: | Tue, 21 Feb 2012 16:18:49 -0000 |
| Reply-To: | Clare.Gill@ucd.ie |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Clare Gill <clare.gill@UCD.IE> |
| Organization: | UCD IT Services |
| Subject: | Customising SAS 9.3 installer |
| Content-Type: | text/plain; charset="US-ASCII" |
Hi
Would anyone have ideas on how I might customise the installer for SAS 9.3
to select the following as defaults:-
Install SAS Software screen -
is it possible to have "Install SAS software" selected as the default
option in the installer?
Select Language Support screen -
is it possible to have only English selected by default in the installer?
Regional Settings screen -
is it possible to have "English (Ireland) [en_IE]" selected by default as
the Language?
Many thanks in advance.
Regards,
Clare
--
Clare Gill
Teaching & Learning IT,
UCD IT Services, UCD Computer Centre,
University College Dublin, Belfield, Dublin 4.
Tel: +353-1-716 2499 Fax: +353-1-2837077
http://www.ucd.ie/itservices
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Richard
Devenezia
Sent: 17 February 2012 21:52
To: SAS-L@LISTSERV.UGA.EDU
Subject: ODS PHTML - Change font of table create by SQL query ?
In the following sample, is there a simple way to alter the fontsize of the
second table ?
ods listing close;
ods phtml body='c:\temp\try.html' (no_top_matter no_bottom_matter);
options nocenter nodate nonumber;
title;footnote;
proc sql;
select * from sashelp.class where name like 'J%';
* ods phtml .... to make this table in larger font;
select * from sashelp.class where name like 'J%';
* ods phtml .... restore to default font;
select * from sashelp.class where name like 'J%'; quit;
ods phtml close;
|