<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Are there commands/code to customize my SAS window? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776414#M246931</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Documentation found here:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/lestmtsglobal/p1puvpmmlcwvfqn1mvfkz3e0qvan.htm" target="_blank" rel="noopener"&gt;DM Statement&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;When it comes to SAS &lt;EM&gt;commands&lt;/EM&gt;, the built-in help files (of SAS 9.4M5 under Windows in my case) are more comprehensive than the online documentation: Under "SAS Command Reference" they list 149 commands, whereas the OS-specific list "&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/hostwin/n12pbrdi6hyw3gn1cjcrubshdxuk.htm" target="_blank" rel="noopener"&gt;SAS Commands under Windows&lt;/A&gt;," which the online documentation of the DM statement refers to, comprises only 78 entries. The TILES command mentioned by &lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884" target="_blank" rel="noopener"&gt;ballardw&lt;/A&gt; is one example contained in the former 149, but not in the latter 78.&lt;/P&gt;</description>
    <pubDate>Tue, 26 Oct 2021 09:56:02 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2021-10-26T09:56:02Z</dc:date>
    <item>
      <title>Are there commands/code to customize my SAS window?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776270#M246836</link>
      <description>&lt;P&gt;So I'm using this code to put my SAS window where I want it in the size I want&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;options awsdef= 0 7 100 93;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;My question is, is there a similar command/code I can use to do any of the following:&lt;/P&gt;&lt;P&gt;-close the output window&lt;/P&gt;&lt;P&gt;-change the size of the docked file explorer&lt;/P&gt;&lt;P&gt;-tile my windows vertically (like when you go to Window &amp;gt; Tile Vertically )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for any help!&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 18:44:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776270#M246836</guid>
      <dc:creator>FriendJen</dc:creator>
      <dc:date>2021-10-25T18:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Are there commands/code to customize my SAS window?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776316#M246867</link>
      <description>&lt;P&gt;Which operating system and SAS version are you using. I might guess that you are using the Display Manager but if you are using SAS Studio or Enterprise Guide then things start differing quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 22:29:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776316#M246867</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-10-25T22:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: Are there commands/code to customize my SAS window?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776325#M246872</link>
      <description>&lt;P&gt;I'm using SAS 9.4 on Windows.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 23:22:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776325#M246872</guid>
      <dc:creator>FriendJen</dc:creator>
      <dc:date>2021-10-25T23:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: Are there commands/code to customize my SAS window?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776382#M246913</link>
      <description>&lt;P&gt;The commands that address appearance in the Display Manager start with dm.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you may want&lt;/P&gt;
&lt;P&gt;For window specific commands the first parameter would be the name of the window. Additional commands are separated by ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dm 'output; winclose';&lt;/P&gt;
&lt;P&gt;will close the output window.&lt;/P&gt;
&lt;P&gt;dm 'output';&lt;/P&gt;
&lt;P&gt;will open the output window.&lt;/P&gt;
&lt;P&gt;Tiling&lt;/P&gt;
&lt;P&gt;dm 'tile';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dm 'resize';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to undo the tile. I don't find an option for the difference between vertical and horizontal though.&lt;/P&gt;
&lt;P&gt;Reference the DM statement in the online help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The dmsexp command makes the explorer active but I don't find any syntax to size it.&lt;/P&gt;
&lt;P&gt;dm 'dmsexp';&lt;/P&gt;
&lt;P&gt;have fun experimenting, maybe you'll find something. I have found some things in SCL commands that work with some windows.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want the setting of windows location to be a specific location manually resize all the windows. Then go to each of the open windows and issue a WSAVE command. You would likely want to change the preference setting at Tools&amp;gt;options&amp;gt;preferences&amp;gt;general and uncheck "Save settings on exit" as that seems to save the appearance at shutdown.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Oct 2021 07:31:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776382#M246913</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-10-26T07:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Are there commands/code to customize my SAS window?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776386#M246916</link>
      <description>&lt;P&gt;Documentation found here:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/lestmtsglobal/p1puvpmmlcwvfqn1mvfkz3e0qvan.htm" target="_blank" rel="noopener"&gt;DM Statement&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Oct 2021 07:36:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776386#M246916</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-10-26T07:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Are there commands/code to customize my SAS window?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776414#M246931</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Documentation found here:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/lestmtsglobal/p1puvpmmlcwvfqn1mvfkz3e0qvan.htm" target="_blank" rel="noopener"&gt;DM Statement&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;When it comes to SAS &lt;EM&gt;commands&lt;/EM&gt;, the built-in help files (of SAS 9.4M5 under Windows in my case) are more comprehensive than the online documentation: Under "SAS Command Reference" they list 149 commands, whereas the OS-specific list "&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/hostwin/n12pbrdi6hyw3gn1cjcrubshdxuk.htm" target="_blank" rel="noopener"&gt;SAS Commands under Windows&lt;/A&gt;," which the online documentation of the DM statement refers to, comprises only 78 entries. The TILES command mentioned by &lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884" target="_blank" rel="noopener"&gt;ballardw&lt;/A&gt; is one example contained in the former 149, but not in the latter 78.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Oct 2021 09:56:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Are-there-commands-code-to-customize-my-SAS-window/m-p/776414#M246931</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-10-26T09:56:02Z</dc:date>
    </item>
  </channel>
</rss>

