11/22/2024 3:56:40 PM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss usage & tips for SalesLogix controls and other 3rd party ActiveX controls. View the code of conduct for posting guidelines.
|
|
|
|
RadioGroup on Active Form
Posted: 13 Apr 06 10:13 AM
|
fiogf49gjkf0d I'm working with an existing Active Form that has a RadioGroup control. It has 2 radio buttons within it, but when I open the Properties window for this form and click the drop-down of the list of objects, I don't find objects for the 2 radio buttons, just the radio group itself. When I choose the radio group object, I don't see where it is that allows you to set up the radio buttons within the radio group. Can anyone help me with this? I'm wanting to do something similar on a new Active Form I'm creating. Thanks. |
|
|
|
Re: RadioGroup on Active Form
Posted: 14 Apr 06 7:24 AM
|
fiogf49gjkf0d You use the items property of the radiogroup each item in items is a button in the group. you can also do it in the script if you want to load different options based on something... with rdogroup1 .items.clear .items.add("True") .items.add("False") .items.add("Unknown") .ItemIndex = 0 end with
|
|
|
|
Re: RadioGroup on Active Form
Posted: 14 Apr 06 8:00 AM
|
fiogf49gjkf0d Thanks, John. The item property is what I was thinking but I didn't realize I had to double-click on it to bring up the list. I just saw the value, (Strings), and clicked the button to the right of it that brings up the data path dialog box, so I wasn't ever seeing the items list. |
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|