I'm writting to a Database. I have a form that I would like to use just one Rich Text Box that will fill 8 different Columns in a database. I've put 8 Radio Buttons in a group box. I'd like the user to select a button, fill in the text box, then select another button to fill in the text box again with text relivent to that button and so on. Right now I have
if oneRadioButton.checked then
cRow("one") = textbox.text
elseif twoRadioButton.checked then
cRow("two") = textbox.text
this of coarse, does not allow me to cycle through all the buttons.
Ideas?
Thanks
if oneRadioButton.checked then
cRow("one") = textbox.text
elseif twoRadioButton.checked then
cRow("two") = textbox.text
this of coarse, does not allow me to cycle through all the buttons.
Ideas?
Thanks