A
Anna
Hi,
I've been trying to put string values in table fields
based on option groups on a form, and after stumbling
across some code have bodged together the following:
Private Sub ctlOption1_AfterUpdate()
Select Case Me!ctlOption1
Case 1:
FieldName= "String1"
Case 2:
FieldName= "String2"
Case 3:
FieldName= "String3"
End Select
End Sub
Now, this inputs the required string data in the table but
doesn't show up on the form (ie no boxes are checked).
Being fairly new to Access, I'm not sure how to go about
fixing this - is it possible?
Thanks,
Anna
I've been trying to put string values in table fields
based on option groups on a form, and after stumbling
across some code have bodged together the following:
Private Sub ctlOption1_AfterUpdate()
Select Case Me!ctlOption1
Case 1:
FieldName= "String1"
Case 2:
FieldName= "String2"
Case 3:
FieldName= "String3"
End Select
End Sub
Now, this inputs the required string data in the table but
doesn't show up on the form (ie no boxes are checked).
Being fairly new to Access, I'm not sure how to go about
fixing this - is it possible?
Thanks,
Anna