S
shumaker
I have an option group with two Radio Buttons on a Data Entry form.
Depending on whether button 1 or 2 is selected I want to write the text
"PTN" or "BTN" to the field in the record.
I'm guessing to do this I must use some sort of switch/case to map the
values of 1 => "PTN" and 2 => "BTN".
What event should I do this in?
The form is in single form view, and users can use it to add records
only. Edit, Add, and Delete are all set to Yes, and Data Entry is set
to Yes. So they can only create new records, but they can go back and
edit/delete records they've created.
So if they arrow back a record, select a different radio button, and
then arrow forward/close/or create a new record, then the update needs
to be made to the field in the appropriate record.
I would write the numbers directly to the table, and make another table
with the value=>text mappings, but the table already has some legacy
text that I think I need to keep that doesn't fit into the categories
of radio buttons.
Thanks in advance.
Depending on whether button 1 or 2 is selected I want to write the text
"PTN" or "BTN" to the field in the record.
I'm guessing to do this I must use some sort of switch/case to map the
values of 1 => "PTN" and 2 => "BTN".
What event should I do this in?
The form is in single form view, and users can use it to add records
only. Edit, Add, and Delete are all set to Yes, and Data Entry is set
to Yes. So they can only create new records, but they can go back and
edit/delete records they've created.
So if they arrow back a record, select a different radio button, and
then arrow forward/close/or create a new record, then the update needs
to be made to the field in the appropriate record.
I would write the numbers directly to the table, and make another table
with the value=>text mappings, but the table already has some legacy
text that I think I need to keep that doesn't fit into the categories
of radio buttons.
Thanks in advance.