<?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: How do I append to a Tab Box with variability charts? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/539195#M76019</link>
    <description>&lt;P&gt;Thank you for this example. Really simplified how I thought of it!&lt;/P&gt;</description>
    <pubDate>Wed, 31 Aug 2022 16:00:54 GMT</pubDate>
    <dc:creator>Hobbi</dc:creator>
    <dc:date>2022-08-31T16:00:54Z</dc:date>
    <item>
      <title>How do I append to a Tab Box with variability charts?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/538712#M75976</link>
      <description>&lt;P&gt;Very new to this so please excuse if I miss anything.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like a Main tab and sub-tabs.&lt;/P&gt;&lt;P&gt;The below is what I am starting with. I want the main tab to be "NTLM" and sub tabs to be "Rsh"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I properly append the chart to the tab box?&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 );

nw = New Window( "PCM Analysis",Tab Box(tp = V List Box()));

////////////////////NTLM 
//////////Rsh
Variability Chart(
	Y( :Rsh ),
	X( :WaferID of MOSFET_TLM, :AC split, :NP Spacer dep ),
	Std Dev Chart( 0 ),
	Points Jittered( 1 ),
	Where( :DeviceID == "NTLM" ),
	SendToReport(
		Dispatch(
			{"Variability Chart for Rsh"},
			"2",
			ScaleBox,
			{Min( 1 ), Max( 330 ), Inc( 50 ), Minor Ticks( 4 ),
			Add Ref Line( 1, "Dotted", "Medium Light Gray", "", 1 ),
			Add Ref Line( 1, "Solid", "Blue", "Min Target (170.00)", 1 ),
			Add Ref Line( 1, "Solid", "Blue", "Max Target (200.00)", 1 ),
			Add Ref Line( 1, "Solid", "Red", "Min Limit (1.00)", 1 ),
			Add Ref Line( 1, "Solid", "Green", "Target (185.00)", 1 )}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:53:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/538712#M75976</guid>
      <dc:creator>Hobbi</dc:creator>
      <dc:date>2023-06-10T23:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do I append to a Tab Box with variability charts?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/538725#M75977</link>
      <description>&lt;P&gt;Most likely you can use &amp;lt;&amp;lt; Add.&lt;/P&gt;
&lt;P&gt;From Scripting Index:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
New Window("Example",
	tb = Tab Box(
		Tab Page Box("First Tab", Tip("First Tab Tooltip"), Button Box("Press One")),
		Tab Page Box("Second Tab", Closeable(1), Button Box("Press Two")),
		Tab Page Box("Third Tab", Icon("Nominal"), Button Box("Press Three"))
	)
);
Wait(1);
tb &amp;lt;&amp;lt; Add(Tab Page Box(Title("Fourth Tab"), Button Box("Press Four")));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1661866898934.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45079i92B367B2074B0A9A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1661866898934.png" alt="jthi_1-1661866898934.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And if you want to add Reports to the V List Box you have, I think you can use Insert Into or Append.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

New Window("vlb",
	vlb = V List Box()
);

wait(1);
vlb &amp;lt;&amp;lt; Append(Button Box("First"));
wait(1);
Insert Into(vlb, Button Box("Second"));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Aug 2022 13:43:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/538725#M75977</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-08-30T13:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I append to a Tab Box with variability charts?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/538726#M75978</link>
      <description>&lt;P&gt;TabBox() works together with TabPageBox (each page has content and a title).&amp;nbsp; TabBox has messages &amp;lt;&amp;lt;Add() and &amp;lt;&amp;lt;Insert() that will create the TabPageBox for you, but for launching platforms in Tabs you may find it easier to use the &amp;lt;&amp;lt;Append() message.&amp;nbsp; It would look something like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Example", tb = Tab Box() );
tb &amp;lt;&amp;lt; Append( TabPageBox("Tab1", dt &amp;lt;&amp;lt; Run Script( "Bivariate" )) );
tb &amp;lt;&amp;lt; Append( TabPageBox(
	"Tab2",
	dt &amp;lt;&amp;lt; Distribution( Continuous Distribution( Column( :weight ) ), Nominal Distribution( Column( :age ) ) )
));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This creates two tab pages in one TabBox - I'm not sure if that is what you mean by "main tab" and "sub tab"?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2022 13:45:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/538726#M75978</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2022-08-30T13:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do I append to a Tab Box with variability charts?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/538732#M75980</link>
      <description>&lt;P&gt;In case you need one more example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NewWindow("Analysis",
	TabBox("Main",
		TabBox(
			"Sub1",vlb1 = VListBox(),
			"Sub2",vlb2 = VListBox()
		)
		
	)
);


vlb1 &amp;lt;&amp;lt; append(
	VariabilityChart(...)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Aug 2022 13:49:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/538732#M75980</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2022-08-30T13:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I append to a Tab Box with variability charts?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/539195#M76019</link>
      <description>&lt;P&gt;Thank you for this example. Really simplified how I thought of it!&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 16:00:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/539195#M76019</guid>
      <dc:creator>Hobbi</dc:creator>
      <dc:date>2022-08-31T16:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I append to a Tab Box with variability charts?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/539203#M76021</link>
      <description>&lt;P&gt;How would I edit that code to add another "Main" tab?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After some modification I have this now. Yet it doesn't have both tabs at the top&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NewWindow("Analysis",
	tb = Tab Box(
		Tab Page Box("main 1",
			TabBox(
			"asd",vlb1 = VListBox(),
			"asd",vlb2 = VListBox()
		)
		)
	),
		Tab Box("main 2",
			TabBox(
			"asd",vlb3 = VListBox(),
			"asd",vlb4 = VListBox()
		)
		)
	);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 Aug 2022 16:36:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-append-to-a-Tab-Box-with-variability-charts/m-p/539203#M76021</guid>
      <dc:creator>Hobbi</dc:creator>
      <dc:date>2022-08-31T16:36:24Z</dc:date>
    </item>
  </channel>
</rss>

