<?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: Disabling screen updates in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/277777#M53955</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;summaryABC = dt&amp;lt;&amp;lt; Summary(&lt;U&gt;Invisible&lt;/U&gt;, Group (:A,:B,:C); // This hides the Summary ABC table
SummaryAB = summaryABC &amp;lt;&amp;lt; Summary(Group (:A,:B);
 
// other misc table operations
//turn on screen update?
summaryABC &amp;lt;&amp;lt; Bring Windows to Front;&amp;nbsp;//&amp;nbsp;This&amp;nbsp;brings&amp;nbsp;Summary&amp;nbsp;ABC&amp;nbsp;to&amp;nbsp;the&amp;nbsp;front&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Have you considered using the "Invisible" switch in your Summary command (see above)? You can then bring back the window with "Bring Window to Front".&lt;/P&gt;&lt;P&gt;Note: I have not found the exact command line to turn on and off the hidden status of a window.&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;TS&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jul 2020 23:58:58 GMT</pubDate>
    <dc:creator>Thierry_S</dc:creator>
    <dc:date>2020-07-09T23:58:58Z</dc:date>
    <item>
      <title>Disabling screen updates</title>
      <link>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/277747#M53951</link>
      <description>&lt;P&gt;I have a script that does lots of table operations like Stack, update, split , summary etc. Each operation displays a table once it is complete. I wanted to ask if there is a way to halt the screen updates at the beginning of the script and then turn them back on at the end of it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something like this..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//Open Data Table and set to invisible
dt = Open(file,invisible); 
 
 
// Turn off screen update?
summaryABC = dt&amp;lt;&amp;lt; Summary(Group (:A,:B,:C); // This opens the table that I would like to hide
SummaryAB = summaryABC &amp;lt;&amp;lt; Summary(Group (:A,:B);
 
// other misc table operations
//turn on screen update?&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:15:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/277747#M53951</guid>
      <dc:creator>AmanS</dc:creator>
      <dc:date>2023-06-10T23:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling screen updates</title>
      <link>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/277764#M53953</link>
      <description>&lt;P&gt;Here is a generalized way of dealing with this.&amp;nbsp; The Show Window() function can be used on almost every window, if no all windows, to have them displayed or not displayed.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");

dt &amp;lt;&amp;lt; show window(0);

wait(5);

dt &amp;lt;&amp;lt; show window(1);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jul 2020 23:20:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/277764#M53953</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-09T23:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling screen updates</title>
      <link>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/277774#M53954</link>
      <description>&lt;P&gt;There is no general "don't show data tables" statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, almost every data table operation supports an &lt;A href="https://www.jmp.com/support/help/en/15.1/index.shtml#page/jmp/hide-a-data-table.shtml" target="_self"&gt;invisible or private&lt;/A&gt; option to keep the data table from appearing.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 23:57:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/277774#M53954</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2020-07-09T23:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling screen updates</title>
      <link>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/277777#M53955</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;summaryABC = dt&amp;lt;&amp;lt; Summary(&lt;U&gt;Invisible&lt;/U&gt;, Group (:A,:B,:C); // This hides the Summary ABC table
SummaryAB = summaryABC &amp;lt;&amp;lt; Summary(Group (:A,:B);
 
// other misc table operations
//turn on screen update?
summaryABC &amp;lt;&amp;lt; Bring Windows to Front;&amp;nbsp;//&amp;nbsp;This&amp;nbsp;brings&amp;nbsp;Summary&amp;nbsp;ABC&amp;nbsp;to&amp;nbsp;the&amp;nbsp;front&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Have you considered using the "Invisible" switch in your Summary command (see above)? You can then bring back the window with "Bring Window to Front".&lt;/P&gt;&lt;P&gt;Note: I have not found the exact command line to turn on and off the hidden status of a window.&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;TS&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 23:58:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/277777#M53955</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2020-07-09T23:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling screen updates</title>
      <link>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/277779#M53956</link>
      <description>Oops,&lt;BR /&gt;&lt;BR /&gt;txnelson provided a much nicer solution.&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;TS</description>
      <pubDate>Fri, 10 Jul 2020 00:00:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/277779#M53956</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2020-07-10T00:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling screen updates</title>
      <link>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/278002#M53989</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp; Just like old times :)&lt;/img&gt; you set me straight and get me working! Thanks for taking the time. Nice to see you here..&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 17:10:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/278002#M53989</guid>
      <dc:creator>AmanS</dc:creator>
      <dc:date>2020-07-10T17:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling screen updates</title>
      <link>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/278003#M53990</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/11634"&gt;@Thierry_S&lt;/a&gt;&amp;nbsp; Thanks for taking the time. I appreciate it. I like the use of invisible and I decided to use a mix of both yours and Jim's solution.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 17:12:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/278003#M53990</guid>
      <dc:creator>AmanS</dc:creator>
      <dc:date>2020-07-10T17:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling screen updates</title>
      <link>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/278004#M53991</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/6878"&gt;@Jeff_Perkinson&lt;/a&gt;&amp;nbsp;, Appreciate it. I will read through this :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 17:14:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Disabling-screen-updates/m-p/278004#M53991</guid>
      <dc:creator>AmanS</dc:creator>
      <dc:date>2020-07-10T17:14:19Z</dc:date>
    </item>
  </channel>
</rss>

