RMateus Posted May 13, 2013 Posted May 13, 2013 Please I need your help. I have a DCL with 3 columns with 8 Radio Buttons in each column. I wanted the switch could only be done in only one of 24 Radio Buttons. What do I have to change? Attached files. Thanks for the help. Greetings. samp5.dcl samp5.lsp Quote
Guest kruuger Posted May 13, 2013 Posted May 13, 2013 replace whole dcl with single popup_list and 24 items on it. if you really want radio_button then clear all radio before select new one. kruuger Quote
MSasu Posted May 14, 2013 Posted May 14, 2013 To have them all sorted on one column you will need to supress the other two: ... :boxed_radio_column { //define radio column label = "Type" ; //give it a label : radio_button { //define radion button key = "rb1" ; //give it a name label = "Bolt Holes &Site" ; //give it a label value = "1" ; //switch it on } //end definition ... : radio_button { //define radion button key = "rb8" ; //give it a name label = "Bolt Holes &Slotted" ; //give it a label } //end definition [color=magenta]// } //end radio column // :boxed_radio_column { //define radio column // label = "Type" ; //give it a label [/color] : radio_button { //define radion button key = "rb9" ; //give it a name label = "Bolt Holes &Site" ; //give it a label } //end definition ... : radio_button { //define radion button key = "rb16" ; //give it a name label = "Bolt Holes &Slotted" ; //give it a label } //end definition [color=magenta]// } //end radio column // :boxed_radio_column { //define radio column // label = "Type" ; //give it a label [/color] : radio_button { //define radion button key = "rb17" ; //give it a name label = "Bolt Holes &Site" ; //give it a label } //end definition ... Quote
Tharwat Posted May 14, 2013 Posted May 14, 2013 That might not fit to the screen size due to the big definition of the dialog , gust a guess . Quote
MSasu Posted May 14, 2013 Posted May 14, 2013 For reference, the dialog with all buttons sorted on a single column is 717 pixels high. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.