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 (July 2007, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 12 Jul 2007 10:52:00 -0400
Reply-To:   "Richard A. DeVenezia" <rdevenezia@WILDBLUE.NET>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Richard A. DeVenezia" <rdevenezia@WILDBLUE.NET>
Organization:   Internet News Service
Subject:   ODS multiple streams and external viewer
Comments:   To: sas-l@uga.edu

Consider a SAS session having results preferences set to 'show in external viewer'.

The following code will display 2.html upon completion. ------------ ods _all_ close;

ods html(main) file='main.html' headtext='<title>main</title>'; ods html(1) file='1.html' headtext='<title>one</title>';; ods html(2) file='2.html' headtext='<title>two</title>';

proc print data=sashelp.class; run;

ods html(2) close; ods html(1) close; ods html(main) close; ------------

Is there a way to have the DMS session 'show in external viewer' the last closed destination instead of the last opened destination ?

-- Richard A. DeVenezia


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