S
Secret Squirrel
On my subform I have a checkbox that is driven by another control on my
subform. When a member is selected from my combo box this check box will be
checked if that member is active. What I want to do is have a msgbox appear
after a new record has been added to my subform so that the user will remind
the member that their account is not active. How would I set this up? I tried
putting this code in the after insert event of the form but it's not working.
Am I missing something?
If IsNull(Me!Member) Then
MsgBox "Reminder: Member is not active"
Else
End If
subform. When a member is selected from my combo box this check box will be
checked if that member is active. What I want to do is have a msgbox appear
after a new record has been added to my subform so that the user will remind
the member that their account is not active. How would I set this up? I tried
putting this code in the after insert event of the form but it's not working.
Am I missing something?
If IsNull(Me!Member) Then
MsgBox "Reminder: Member is not active"
Else
End If