Multiple radio buttons in a row

DevAccess

Registered User.
Local time
Today, 14:06
Joined
Jun 27, 2016
Messages
321
Hello

I would like to have radio buttons as been attached in the picture.

I on click of the radio button in row I would like to have mathematical calculation needs to be done.

In one row only one radio button needs to be selected , Please help me how this thing can be achieved.

Thanks
MAM
 

Attachments

  • Radiobutton.png
    Radiobutton.png
    20.3 KB · Views: 77
each row will need to be in its own frame. The Frame is what gets the value of the button.
you CAN have the frame TRANSPARENT so users cant see it.
the frame can be bound to a field.
 
name your Option buttons into meaningful to you. concatenate the row name and header name, eg:

optQuality0, optQuality1, optQuality2
optProductivity0, optProductivity1, optProductivity2
...
...

... anyway see the sample form.
see the code behind the click of those option buttons.
 

Attachments

name your Option buttons into meaningful to you. concatenate the row name and header name, eg:

optQuality0, optQuality1, optQuality2
optProductivity0, optProductivity1, optProductivity2
...
...

... anyway see the sample form.
see the code behind the click of those option buttons.

This was indeed what I was looking for thanks a ton.
 
One more question on top of this.

I would like to save the value of what was being selected for example if Quality High was selected then I have relevant field in the table where I would like to store the value, How do i achieve this.

Indeed, that needs to be stored as 1 in respective field called Qualcharactaristics =1

same for other attributes as well.
 
this is a sample the form now is Bound to table1.
there are two bound textbox (you can make them Hidden by setting their visible property to No).
 

Attachments

The names of the individual buttons are irrelevant since you reference the frame NOT individual buttons. To produce this look requires 7 frames stacked as Ranman suggested.
 

Users who are viewing this thread

Back
Top Bottom