J
Jack
Hi,
I have a subform named frmSub6DPermAction which has a control named
txt6DPermAct1
This subform is in a main form named frmActionRequest.
I have a procedure in the open event of the main form as:
If _
((Len(Nz(Me.memoCause.Value, "")) = 0) Or _
(Len(Nz(Me!frmSub6DPermAction.Form!txt6DPermAct1.Value, "")) = 0)) Then
txtResponseReceivedDate.Locked = True
Else
txtResponseReceivedDate.Locked = False
End If
As I am stepping through the above code I am getting an error stating that
the systemcannot find the field frmSub6DPermAction. I am not sure where I am
going wrong. Any help is highly appreciated. Thanks.
I have a subform named frmSub6DPermAction which has a control named
txt6DPermAct1
This subform is in a main form named frmActionRequest.
I have a procedure in the open event of the main form as:
If _
((Len(Nz(Me.memoCause.Value, "")) = 0) Or _
(Len(Nz(Me!frmSub6DPermAction.Form!txt6DPermAct1.Value, "")) = 0)) Then
txtResponseReceivedDate.Locked = True
Else
txtResponseReceivedDate.Locked = False
End If
As I am stepping through the above code I am getting an error stating that
the systemcannot find the field frmSub6DPermAction. I am not sure where I am
going wrong. Any help is highly appreciated. Thanks.