New Progress Programmer Help

chefsride

Member
I have set up a radio set with 3 options for the user to select. I also setup a menu that would do the same thing. The problem I am having is getting the radio set to change which option is selected if the user uses the menu instead of the radio set. I am brand new with progress so please go easy with the answer for I probably will not understand you at first.
 
Welcome chefsride!!!

Before being able to give a good answer, a few questions:

How are the different menu-items of your menu defined? Are they "Toggles" or normal menu-items? -- Toggles are the ones that get a checkmark in front of them when you select an option in the menu.

What is the name of your radio set and what data-type does it have (character, integer, etc) and what possible values are there?

I assume the menu and radio-set are in the same window and I also assume you are using the AppBuilder?
 
The menu-items are normal menu items. I believe the way I have set up the radio set is that there are 3 options and they are integers. Yes the menu-items and the radio set is in the same window and I am using AppBuilder. I do nto remember the name of my radio set off the top of my head. Thank you for helping Thank you also for being patient in the fact that I am a new programmer.
 
Hi,

Well then it's easy just use the choose trigger of the menu item to assign the radioset correctly and then display it.

I mean in the choose trigger of the menu item put this (if it has to be 1):
ASSIGN rad_1 = 1.
DISPLAY RAD_1 WITH FRAME {&FRAME-NAME}.

Casper.
 
Back
Top