This is probably one of the more easy questions to answer but it really has us puzzled.
I'm setting up a form and in one place I'm using radio buttons. If a certain button is selected, I'm going to gray out another portion of the form.
What I am trying to find out is how can I find out which button is pressed/clicked/selected? I've tried get_property(@window.radio_1,"TEXT") in addition to "PROPERTY" and "VALUE". What is the one "whatever" that will tell me the button is on or off??
It's got to be something simple to give me this much problem.
Thanks
Andy
Andy,
VALUE would be the correct property. Make sure you are specifying the name of the radio group and not just one of the buttons in your code. For instance:
Value=Get_Property(@Window:".RADIO_GROUP", "VALUE")
would be correct. This code:
Value=Get_Property(@Window:".RADIO_GROUP.BUTTON_NAME", "VALUE")
would not work for you.
Thanks Don
I knew it had to be something simple.