Date: Wed, 8 Nov 2006 15:40:18 -0800
Reply-To: "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Subject: Re: Results window won't stay in HTML format
In-Reply-To: <200611082247.kA8LLkOp014686@mailgw.cc.uga.edu>
Content-Type: text/plain; charset="us-ascii"
Pat - a wild guess.... "ods html;" without a filename?
ods listing close;
ods html file = "some_filename.htm";
**some code**
ods html close;
ods html;
hth
Paul Choate
DDS Data Extraction
(916) 654-2160
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Pat
Moore
Sent: Wednesday, November 08, 2006 2:47 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Results window won't stay in HTML format
SAS gurus:
I'm running SAS 9.1.4 SP4 under Win XP. I selected HTML Results under
Tools/Options/Preferences, deselected "Create Listing", selected "Create
HTML", and checked Use Work Folder. I kept the default "sasdocPrinter"
Style and selected "View Results as they are generated". I selected
the "Internal browser".
When I enter something like:
ods listing close;
ods html file = "some_filename.htm";
**some code**
ods html close;
ods listing;
It prints just fine to the file I designated; however, on the next step
that generates results, my Results window is in regular listing format,
not
HTML. How can I keep my results coming in HTML format after outputting
to
an external HTML file?