Radio Buttons?!?!?!?

Arg81

Well-known member
Joined
Mar 11, 2005
Messages
949
Location
Midlands, UK
Programming Experience
1-3
Radio Buttons?!?!?!? - RESOLVED

How do you bind them?

I have a table with a column for int.
On my form I have put 3 radio buttons into a group box.
When rbLocal is checked, I want the value to be 1
When rbLocalS is checked, I want the value to be 2
When rbNetwork is checked, I want the value to be 3.

I can kind of work this bit out for myself, however I can't figure out how to bind those radio buttons to that column, and insert the appropriate value - obviously only one radio button can be checked any a time.

It's not as easy as MS Access!!!!!!

Cheers,
Luke
 
Last edited:
instead of binding the radio buttons, bind an integer value to the column and when a radiobutton is clicked just change the integer and call the updatecommand
 
Back
Top