<?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 to use Radio Boxes in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216762#M43310</link>
    <description>&lt;P&gt;The issue you are having is that you are a little confused as what the "X" variable is.&amp;nbsp; In the code that&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2610"&gt;@vince_faller&lt;/a&gt;&amp;nbsp; provided, "X" is associated with a DisplayBox object.&amp;nbsp; More specifically, it is a NumberEditBox(), display object.&amp;nbsp; The NumberEditBox() is an Object in your window.&amp;nbsp; To set and get the values in the object, you use &amp;lt;&amp;lt;Set and &amp;lt;&amp;lt;Get messages.&amp;nbsp; And, as long as the display window remains open, you can get and set the values in that object. &amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;z = x &amp;lt;&amp;lt; get;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However, most scripts are structured to display a window to get and set information, but then close the window to do further calculations.&amp;nbsp; Therefore, one typicaly moves the required values out of the display objects into standard JSL scalers, lists or matricies.&amp;nbsp; For the NumberEditBox() I typically use a simple &amp;lt;&amp;lt;Set Function message.&amp;nbsp; It executes each time the value in the NumberEditBox() changes.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Window( "Example",
	Panel Box( "Confidence Interval",
		rb = Radio Box(
			{"90%", "95%", "98%", "99%"},
			&amp;lt;&amp;lt;Set Function(
				Function( {self},
					Match( self &amp;lt;&amp;lt; Get Selected,
						"95%", x &amp;lt;&amp;lt; Set( 1.96 ),
						"90%", x &amp;lt;&amp;lt; Set( 1.645 ),
						"98%", x &amp;lt;&amp;lt; Set( 2.326 ),
						"99%", x &amp;lt;&amp;lt; Set( 2.576 )
					)
				)
			), 

		), 

	), 

	H Center Box(
		Button Box( "Calculate Minimum Sample Size", computeResults )
	), 

	V List Box(
		tb = Text Box( "" ),
		ciolb = Panel Box( "Result",
			x = Number Edit Box(
				1.645,
				7,
				&amp;lt;&amp;lt;set function( Function( {this}, z = this &amp;lt;&amp;lt; get ) )
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or you could actually just set the z value in the Radito Box()&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Window( "Example",
	Panel Box( "Confidence Interval",
		rb = Radio Box(
			{"90%", "95%", "98%", "99%"},
			&amp;lt;&amp;lt;Set Function(
				Function( {self},
					Match( self &amp;lt;&amp;lt; Get Selected,
						"95%", x &amp;lt;&amp;lt; Set( 1.96 ); z = x &amp;lt;&amp;lt; get;,
						"90%", x &amp;lt;&amp;lt; Set( 1.645 ); z = x &amp;lt;&amp;lt; get;,
						"98%", x &amp;lt;&amp;lt; Set( 2.326 ); z = x &amp;lt;&amp;lt; get;,
						"99%", x &amp;lt;&amp;lt; Set( 2.576 ); z = x &amp;lt;&amp;lt; get;
					)
				)
			), 

		), 

	)

	H Center Box(
		Button Box( "Calculate Minimum Sample Size", computeResults )
	), 

	V List Box(
		tb = Text Box( "" ),
		ciolb = Panel Box( "Result",
			x = Number Edit Box(
				1.645
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;</description>
    <pubDate>Tue, 09 Jul 2019 14:51:10 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2019-07-09T14:51:10Z</dc:date>
    <item>
      <title>How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216556#M43269</link>
      <description>&lt;P&gt;I am brand new to JMP scripting and trying to self teach. I created a radio box:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Window( "Example",
panelbox("Confidence Interval",
rb = Radio Box(
{"90%", "95%", "98%", "99%"},
Show( rb &amp;lt;&amp;lt; Get() ),
),&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My current question is how can I use the variable rb?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried this if(then) statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If(
	:rb == "95%", 
// then
	:x = 1.96,
	:rb == "90%", :x = 1.645,
	:rb == "98%", :x = 2.326,
	:rb == "99%", :x = 2.576,

)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;but get this error message: "Name Unresolved: rb in access or evaluation of 'rb' , :rb/*###*/"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the whole code.&amp;nbsp;&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;Names Default To Here( 1 );
computeResults = Expr(
	If(
		:rb == "95%", 
// then
		:x = 1.96,
		:rb == "90%", :x = 1.645,
		:rb == "98%", :x = 2.326,
		:rb == "99%", :x = 2.576, 

	)
);
New Window( "Example",
	Panel Box( "Confidence Interval",
		rb = Radio Box(
			{"90%", "95%", "98%", "99%"},
			Show( rb &amp;lt;&amp;lt; Get() ), 
		), 
	), 

	H Center Box( Button Box( "Calculate Minimum Sample Size", computeResults ) ), 

	V List Box( Text Box( "" ), ciolb = Panel Box( "Result", x = Number Edit Box( "" ) ) )
);&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 any help or suggestions. I'll be reading the scripting manual and check back later.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 19:49:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216556#M43269</guid>
      <dc:creator>Kirk_A</dc:creator>
      <dc:date>2019-07-08T19:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216566#M43270</link>
      <description>&lt;P&gt;edit: I'm sorry, the goal is to recognize which radio box is marked and then print out the z-score.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 17:45:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216566#M43270</guid>
      <dc:creator>Kirk_A</dc:creator>
      <dc:date>2019-07-08T17:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216610#M43273</link>
      <description>&lt;P&gt;You're scoping the variables as columns when you do :rb.&amp;nbsp; You have to send the graphic objects &amp;lt;&amp;lt; messages.&amp;nbsp;&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 );
computeResults = Expr(
	match(rb &amp;lt;&amp;lt; Get Selected,
		"95%", x &amp;lt;&amp;lt; Set(1.96), 
		"90%", x &amp;lt;&amp;lt; Set(1.645), 
		"98%", x &amp;lt;&amp;lt; Set(2.326), 
		"99%", x &amp;lt;&amp;lt; Set(2.576)
	);
);

New Window( "Example",
	Panel Box( "Confidence Interval",
		rb = Radio Box(
			{"90%", "95%", "98%", "99%"},
			Show( rb &amp;lt;&amp;lt; Get() ), 


		), 

	), 

	H Center Box( Button Box( "Calculate Minimum Sample Size", computeResults ) ), 

	V List Box( Text Box( "" ), ciolb = Panel Box( "Result", x = Number Edit Box( "" ) ) )
);

//Or you could make the radiobox actually just change it


New Window( "Example",
	Panel Box( "Confidence Interval",
		rb = Radio Box(
			{"90%", "95%", "98%", "99%"},
			&amp;lt;&amp;lt;Set Function(
				Function({self}, 
					match(self &amp;lt;&amp;lt; Get Selected,
						"95%", x &amp;lt;&amp;lt; Set(1.96), 
						"90%", x &amp;lt;&amp;lt; Set(1.645), 
						"98%", x &amp;lt;&amp;lt; Set(2.326), 
						"99%", x &amp;lt;&amp;lt; Set(2.576)
					);
				)
			), 
		), 

	), 

	//H Center Box( Button Box( "Calculate Minimum Sample Size", computeResults ) ), 

	V List Box( Text Box( "" ), ciolb = Panel Box( "Result", x = Number Edit Box( 1.645 ) ) )
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Jul 2019 18:57:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216610#M43273</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2019-07-08T18:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216625#M43275</link>
      <description>&lt;P&gt;Thank you very much for the reply. I will definitely study up more on match and that "Set Function" you suggested. Thank you again!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 19:41:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216625#M43275</guid>
      <dc:creator>Kirk_A</dc:creator>
      <dc:date>2019-07-08T19:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216696#M43294</link>
      <description>&lt;P&gt;You mention that you are self teaching JSL.&amp;nbsp; Given that, I suggest you take the time to read the Scripting Guide&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; Help==&amp;gt;Books==&amp;gt;Scripting Guide&lt;/P&gt;
&lt;P&gt;and that you become very familiar with the Scripting Index.&amp;nbsp; In the index, you will find all of the messages, etc. that can be sent to the functions and objects, and will give you examples of each.&amp;nbsp; Below is the example that is referenced in the section of the guide for Radio Button(), using a Set Function() for processing&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="setfun.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/18238iA6986ECA4D4F11DA/image-size/large?v=v2&amp;amp;px=999" role="button" title="setfun.PNG" alt="setfun.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 02:45:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216696#M43294</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-07-09T02:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216754#M43305</link>
      <description>&lt;P&gt;Thanks for the heads up, definitely going to look that over closely.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 13:08:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216754#M43305</guid>
      <dc:creator>Kirk_A</dc:creator>
      <dc:date>2019-07-09T13:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216756#M43306</link>
      <description>&lt;P&gt;Ummmm ....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Match( rb &amp;lt;&amp;lt; Get Selected,
	"95%", x &amp;lt;&amp;lt; Set( 1.96 ),
	"90%", x &amp;lt;&amp;lt; Set( 1.645 ),
	"98%", x &amp;lt;&amp;lt; Set( 2.326 ),
	"99%", x &amp;lt;&amp;lt; Set( 2.576 )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to display the z-score for a chosen CI via radio buttons. The x assigned and the correct z-score displayed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I now want to use the z-score in a formula, but am getting this error:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Send Expects Scriptable Object in access or evaluation of 'Send' , z &amp;lt;&amp;lt; /*###*/Set( 1.96 ) /*###*/&lt;/P&gt;
&lt;P&gt;Is the x-value as obtained in the above code not a numeric value I can use in a formula? Is there a way to "force" it to be/act numeric?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2019 11:53:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216756#M43306</guid>
      <dc:creator>Kirk_A</dc:creator>
      <dc:date>2019-07-10T11:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216762#M43310</link>
      <description>&lt;P&gt;The issue you are having is that you are a little confused as what the "X" variable is.&amp;nbsp; In the code that&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2610"&gt;@vince_faller&lt;/a&gt;&amp;nbsp; provided, "X" is associated with a DisplayBox object.&amp;nbsp; More specifically, it is a NumberEditBox(), display object.&amp;nbsp; The NumberEditBox() is an Object in your window.&amp;nbsp; To set and get the values in the object, you use &amp;lt;&amp;lt;Set and &amp;lt;&amp;lt;Get messages.&amp;nbsp; And, as long as the display window remains open, you can get and set the values in that object. &amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;z = x &amp;lt;&amp;lt; get;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However, most scripts are structured to display a window to get and set information, but then close the window to do further calculations.&amp;nbsp; Therefore, one typicaly moves the required values out of the display objects into standard JSL scalers, lists or matricies.&amp;nbsp; For the NumberEditBox() I typically use a simple &amp;lt;&amp;lt;Set Function message.&amp;nbsp; It executes each time the value in the NumberEditBox() changes.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Window( "Example",
	Panel Box( "Confidence Interval",
		rb = Radio Box(
			{"90%", "95%", "98%", "99%"},
			&amp;lt;&amp;lt;Set Function(
				Function( {self},
					Match( self &amp;lt;&amp;lt; Get Selected,
						"95%", x &amp;lt;&amp;lt; Set( 1.96 ),
						"90%", x &amp;lt;&amp;lt; Set( 1.645 ),
						"98%", x &amp;lt;&amp;lt; Set( 2.326 ),
						"99%", x &amp;lt;&amp;lt; Set( 2.576 )
					)
				)
			), 

		), 

	), 

	H Center Box(
		Button Box( "Calculate Minimum Sample Size", computeResults )
	), 

	V List Box(
		tb = Text Box( "" ),
		ciolb = Panel Box( "Result",
			x = Number Edit Box(
				1.645,
				7,
				&amp;lt;&amp;lt;set function( Function( {this}, z = this &amp;lt;&amp;lt; get ) )
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or you could actually just set the z value in the Radito Box()&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Window( "Example",
	Panel Box( "Confidence Interval",
		rb = Radio Box(
			{"90%", "95%", "98%", "99%"},
			&amp;lt;&amp;lt;Set Function(
				Function( {self},
					Match( self &amp;lt;&amp;lt; Get Selected,
						"95%", x &amp;lt;&amp;lt; Set( 1.96 ); z = x &amp;lt;&amp;lt; get;,
						"90%", x &amp;lt;&amp;lt; Set( 1.645 ); z = x &amp;lt;&amp;lt; get;,
						"98%", x &amp;lt;&amp;lt; Set( 2.326 ); z = x &amp;lt;&amp;lt; get;,
						"99%", x &amp;lt;&amp;lt; Set( 2.576 ); z = x &amp;lt;&amp;lt; get;
					)
				)
			), 

		), 

	)

	H Center Box(
		Button Box( "Calculate Minimum Sample Size", computeResults )
	), 

	V List Box(
		tb = Text Box( "" ),
		ciolb = Panel Box( "Result",
			x = Number Edit Box(
				1.645
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 09 Jul 2019 14:51:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216762#M43310</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-07-09T14:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216764#M43312</link>
      <description>&lt;P&gt;This feel very unintuitive. So Set and Get are simialr but different. Thanks again for the direction.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 15:51:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216764#M43312</guid>
      <dc:creator>Kirk_A</dc:creator>
      <dc:date>2019-07-09T15:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216765#M43313</link>
      <description>&lt;P&gt;Set and Get are exact opposites.&amp;nbsp; If we look at&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Match( self &amp;lt;&amp;lt; Get Selected,
						"95%", x &amp;lt;&amp;lt; Set( 1.96 ); z = x &amp;lt;&amp;lt; get;,
						"90%", x &amp;lt;&amp;lt; Set( 1.645 ); z = x &amp;lt;&amp;lt; get;,
						"98%", x &amp;lt;&amp;lt; Set( 2.326 ); z = x &amp;lt;&amp;lt; get;,
						"99%", x &amp;lt;&amp;lt; Set( 2.576 ); z = x &amp;lt;&amp;lt; get;
					)
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The variable "X" is pointing to a display object.&amp;nbsp; So to communicate with a display object, one passes messages to the object.&amp;nbsp; Thus to assign a value to the object one passes the message to the object to "Set" the value.&amp;nbsp; Thus,&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;x &amp;lt;&amp;lt; Set( 1.96 ); &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The variable "Z" is just a memory variable( a scaler value).&amp;nbsp; To assign a value to a scaler variable, one just uses an "=", such as&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;a = 42;
theParameterValue = b + c * 24;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;but in your case, you want to set the scaler variable "Z" to the value from the Display Object, "X".&amp;nbsp; So to do that, one uses the "="&amp;nbsp; to assign the value to variable "Z", but has to pass the message, "&amp;lt;&amp;lt; get" to the Display Object "X" to retrieve its current value.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;z = x &amp;lt;&amp;lt; get;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The statements could have also been written:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;x &amp;lt;&amp;lt; Set( 1.96 ); z = 1.96;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;which might have been more understandable.&lt;/P&gt;
&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Jul 2019 16:11:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216765#M43313</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-07-09T16:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216766#M43314</link>
      <description>&lt;P&gt;I think I have an understanding of what is going on. Hopefully LAST question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I set a variable say x = 3 it looks like I can "reset" x later to say x = z+ y without an error (syntax error at least). Am I correct?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 16:22:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216766#M43314</guid>
      <dc:creator>Kirk_A</dc:creator>
      <dc:date>2019-07-09T16:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216773#M43316</link>
      <description>You can do that. But in your case, since x is use in your display window, you need to understand that x will no longer point to the numbereditbox</description>
      <pubDate>Tue, 09 Jul 2019 19:14:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216773#M43316</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-07-09T19:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Radio Boxes</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216784#M43318</link>
      <description>&lt;P&gt;Yep, I see that. I just wanted to verify the theory. Thanks again.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 19:23:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Radio-Boxes/m-p/216784#M43318</guid>
      <dc:creator>Kirk_A</dc:creator>
      <dc:date>2019-07-09T19:23:03Z</dc:date>
    </item>
  </channel>
</rss>

