M
mark
If I'm understanding this correctly, you wish to have the
label (or whatever) of the checkbox automatically entered
into a text field if that checkbox is selected? If that
is right, you can add code similar to this to the
AfterUpdate event of each checkbox:
If chkBox.value = -1 then
Me.textField.value = textField.value & ", " & "text of
label"
end if
You may also want to add an Else statement to deal with a
user un-checking a checkbox (chkBox.value = 0)
Hope that helps.
label (or whatever) of the checkbox automatically entered
into a text field if that checkbox is selected? If that
is right, you can add code similar to this to the
AfterUpdate event of each checkbox:
If chkBox.value = -1 then
Me.textField.value = textField.value & ", " & "text of
label"
end if
You may also want to add an Else statement to deal with a
user un-checking a checkbox (chkBox.value = 0)
Hope that helps.