Checkbox is selected want a string of text to be inserted into a .

C

Chris

When a checkbox is selected via a form I want access to insert text into a
word doc/template and vice versa when checkbox is unselected it removes the
text from the doc/template

how do i do this? thanks
 
K

Klatuu

In the After Update event of the checkbox:

If Me.MyCheckBoxNameHere = True Then
'Insert stuff in word doc
Else
'Remove stuff from word doc
End If
 
Top