Just thought of something when I was reading over the thread again. If you're looking to use the check to activate another control you may wish to use .Enabled instead. This will still show the control on the form so the user will know there is one, but will gray it out until the first control code is activated. So your code would look like.
[code=vb]
Private Sub POL_Actions_Aft er_Update()
If IsNull(Me!Chang e_Withdrawn) Then
Me!Reason_for_W ithdrawal.Enabl ed = False
Else
Me!Reason_for_W ithdrawal.Enabl ed = True
End If
End Sub
[/code]
Just a thought.
- Minion -
[code=vb]
Private Sub POL_Actions_Aft er_Update()
If IsNull(Me!Chang e_Withdrawn) Then
Me!Reason_for_W ithdrawal.Enabl ed = False
Else
Me!Reason_for_W ithdrawal.Enabl ed = True
End If
End Sub
[/code]
Just a thought.
- Minion -
Comment