G
Guest
I'm attempting to change the status of a record on the main form to "Closed"
based on two values entered on a continuous subform. Here's the code, which
is generating a "recordset not updateable" error.
If Me.[cboDPAction] = "Installation Completed" And Not
(IsNull(Me.[dtCompleteDate])) Then
Me.Parent.[txtStatus] = "Closed"
End If
I have this code in the AfterUpdate event of the subform.
Does anyone have a suggestion? Should the event be initiated from the parent
form?
based on two values entered on a continuous subform. Here's the code, which
is generating a "recordset not updateable" error.
If Me.[cboDPAction] = "Installation Completed" And Not
(IsNull(Me.[dtCompleteDate])) Then
Me.Parent.[txtStatus] = "Closed"
End If
I have this code in the AfterUpdate event of the subform.
Does anyone have a suggestion? Should the event be initiated from the parent
form?