First question, do you already have the connection setup in your C# application to the Access DB?
Second Question, are you already passing information to the Access DB from your C# application?
If (first == "yes" && second == "yes")... sorry, but um ya if you answered yes to both of those questions then I'm assuming you're just looking to find out how to read the value of the radiobutton.
If the answers are no, then your question is how to establish the connection and pass data from the app to Access?
If it's the first, then there's 3 pieces of information (generally) that are of any use in a radiobutton (4 if you include the group that it belongs to), it's name, text and it's checked state.
First, make sure the RadioButton's permission is set to anything except private.
- Obtaining the checked state is simple by using radioBoxName.Checked you will return a bool value.
- The radiobox name is radioBoxName.Name which returns a string value.
- The radiobox text (what is shown on the user end) is radioBoxName.Text which also returns a string value.
A solid tutorial for setting up your connection properties to connect to the Access Database can be found HERE and then from there it's just a matter of passing the collected variables to the required table/row/columns.
Hope this helps to some degree. The request was somewhat vague so I'm sorry if I went into too much …