<?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: Why do my Invisible Data Tables Appear After Opening in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69348#M35084</link>
    <description>&lt;P&gt;there is nothing obviously wrong with your syntax. This works in 13 and 14; invisible makes a hidden window that shows up grayed in the list; private does not make a window at all and nothing shows up in the list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;x=savetextfile("$temp\x.csv","junk\!naaa\!n1\!n2\!n3");
dt = Open(x,
		 invisible,  
		Import Settings(
			Column Names Start( 2 ),
			Data Starts( 3 )
		)
	);
	
	close(dt,nosave)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;what version of JMP are you using? I'm not familiar with the error&amp;nbsp;&lt;SPAN&gt;'cannot locate files&amp;nbsp;in list'; what function are you calling that says that? what is the parameter to that function?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Aug 2018 22:29:00 GMT</pubDate>
    <dc:creator>Craige_Hales</dc:creator>
    <dc:date>2018-08-23T22:29:00Z</dc:date>
    <item>
      <title>Why do my Invisible Data Tables Appear After Opening</title>
      <link>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69201#M35020</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a script in which I open my data tables using open(file, invisible), and then manipulate the file. This used to show the files in the home window but that doesn't seem to be working anymore. When I change it to private the files show up in the homw window but isn't it supposed to be the other way around? Also, when I remove the Import Settings the invisible seems to work just fine, can anyone see what I'm doing wrong?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;if(z == "Multiple", 
	dt = Open(x, invisible,  
		Import Settings(
			Column Names Start( 2 ),
			Data Starts( 3 )
		)
	), 
	dt=Open(x, invisible,  
		Import Settings(
			Column Names Start( 2 ),
			Data Starts( 3 )
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 18:52:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69201#M35020</guid>
      <dc:creator>Jaz</dc:creator>
      <dc:date>2018-08-22T18:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: Invisible Data Tables not Visible in Home Window</title>
      <link>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69202#M35021</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;I'm using the same data tables as in my last post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 17:26:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69202#M35021</guid>
      <dc:creator>Jaz</dc:creator>
      <dc:date>2018-08-22T17:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Why do my Invisible Data Tables Appear After Opening</title>
      <link>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69219#M35026</link>
      <description>&lt;P&gt;I run this script and watch the Home window. It behaves as expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );

dt = Open( "$SAMPLE_DATA/Big Class.jmp", Invisible );
Wait( 3 );

biv = dt &amp;lt;&amp;lt; Bivariate( Y( :weight ), X( :height ), Invisible );
Wait( 3 );

biv &amp;lt;&amp;lt; Close Window;
Wait( 3 );

Close( dt );

dt = Open( "$SAMPLE_DATA/Big Class.jmp", Private );
Wait( 3 );

biv = dt &amp;lt;&amp;lt; Bivariate( Y( :weight ), X( :height ), Invisible );
Wait( 3 );

biv &amp;lt;&amp;lt; Close Window;
Wait( 3 );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The first have I see the data table name in a light gray font. In the second half it does not appear at all. The platform appears in both parts as a light gray font.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 19:12:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69219#M35026</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2018-08-22T19:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Why do my Invisible Data Tables Appear After Opening</title>
      <link>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69330#M35074</link>
      <description>&lt;P&gt;Okay, but I used invisible and then Import settings in a loop with multiple files, then I add the files to a list to concatenate the files but it says 'cannot locate files&amp;nbsp;in list', and the invisible functionality&amp;nbsp;doesn't work.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 18:42:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69330#M35074</guid>
      <dc:creator>Jaz</dc:creator>
      <dc:date>2018-08-23T18:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Why do my Invisible Data Tables Appear After Opening</title>
      <link>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69332#M35076</link>
      <description>&lt;P&gt;Is my syntax from the first post wrong? The invisible funcionality works when I get rid of the Import Setttings.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 18:47:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69332#M35076</guid>
      <dc:creator>Jaz</dc:creator>
      <dc:date>2018-08-23T18:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Why do my Invisible Data Tables Appear After Opening</title>
      <link>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69348#M35084</link>
      <description>&lt;P&gt;there is nothing obviously wrong with your syntax. This works in 13 and 14; invisible makes a hidden window that shows up grayed in the list; private does not make a window at all and nothing shows up in the list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;x=savetextfile("$temp\x.csv","junk\!naaa\!n1\!n2\!n3");
dt = Open(x,
		 invisible,  
		Import Settings(
			Column Names Start( 2 ),
			Data Starts( 3 )
		)
	);
	
	close(dt,nosave)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;what version of JMP are you using? I'm not familiar with the error&amp;nbsp;&lt;SPAN&gt;'cannot locate files&amp;nbsp;in list'; what function are you calling that says that? what is the parameter to that function?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 22:29:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Why-do-my-Invisible-Data-Tables-Appear-After-Opening/m-p/69348#M35084</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2018-08-23T22:29:00Z</dc:date>
    </item>
  </channel>
</rss>

