ScrmingWhisprs
I <3 Coffee Milk.
- Local time
- Today, 07:40
- Joined
- Jun 29, 2006
- Messages
- 156
I have a checkbox (MessageIndicator) on my Edit Worker form that I would like to automatically be checked if there is text in my Message field. So if I edit this record and clear out the message field, that checkbox should uncheck itself when I save the record.
I'm just not really sure where to put this code.
Thanks
ScrmingWhisprs
Code:
If IsNull(Me.Message) Then
Me.MessageIndicator = False
Else
Me.MessageIndicator = True
End If
I'm just not really sure where to put this code.
Thanks
ScrmingWhisprs