|
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
|