Dear All,
My main form "frmRequestMaster" has a check box named "Demobilized" and once I click it I want my subform's (subIssue) records to be deleted.
Here's my code but I just can't make it work, please help.
Any help is highly appreciated. Thanks.
Regards,
qwerty70
My main form "frmRequestMaster" has a check box named "Demobilized" and once I click it I want my subform's (subIssue) records to be deleted.
Here's my code but I just can't make it work, please help.
Code:
Private Sub Demobilized_AfterUpdate()
If Me.Demobilized = True Then
Forms!frmRequestMaster!subIssue.Recordset = Null
End If
End Sub
Any help is highly appreciated. Thanks.
Regards,
qwerty70