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 (November 2006, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: Pat Moore <jnpam@UAS.ALASKA.EDU>
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?


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