Hey there
My form has an option group "CtrlOpt1" with 3 radio buttons, and a text field "txtField" below it.
For every time i choose an option in CtrlOpt1, the value returned is sent to txtField.
Instead of adding a number to txt.Field, I now need CtrlOpt1 to add text. Instead of 1, 2 and 3, it should say <<First>>, <<Second>> and <<Third>> in plain text.
Any ideas as to how I can do this anyone?
My form has an option group "CtrlOpt1" with 3 radio buttons, and a text field "txtField" below it.
For every time i choose an option in CtrlOpt1, the value returned is sent to txtField.
Code:
Private Sub CtrlOpt1_AfterUpdate()
Me.txtField = Me.txtField & Me.CtrlOpt1.Value
End Sub
Instead of adding a number to txt.Field, I now need CtrlOpt1 to add text. Instead of 1, 2 and 3, it should say <<First>>, <<Second>> and <<Third>> in plain text.
Any ideas as to how I can do this anyone?