after update - check box

K

Keith

I have read through a lot of discussions about adding a date to a field when
you click a checkbox but I'm having trouble with this (but with a slight
variation).

I have a textbox (text144) that they have to input an alpha numberic. Now I
have an OnClick event that states:
Private Sub being_renewed_Click()
[renewal rpon] = Forms!form2!Text144
End Sub

Now, if they uncheck the box I want it to disappear and this is where I'm
having trouble. I have an After Update event that states:
Private Sub being_renewed_AfterUpdate()
If [being_renewed] = false Then
[renewal rpon] = Null
End If
End Sub

Am I going about this wrong? Your help is greatly appreciated and Thank You
very much for all the insight I have read on this site!
 
Top