G
Guest
I have an application that works fine as is. What I'm doing is adding tabs to
a new form and dropping the previously created form on one of the tab pages.
The following line works fine on the old form:
If Forms![Bank]![Creditor] = False Then
[Debit_Label].Caption = "Debits"
[Credit_Label].Caption = "Credits"
Else
[Debit_Label].Caption = "Charges"
[Credit_Label].Caption = "Payments"
End If
When I drop this form into the tab control, page1, the reference no longer
works. It tells me it can't find the field 'Bank'.
What do I need to change to have this reference work?
a new form and dropping the previously created form on one of the tab pages.
The following line works fine on the old form:
If Forms![Bank]![Creditor] = False Then
[Debit_Label].Caption = "Debits"
[Credit_Label].Caption = "Credits"
Else
[Debit_Label].Caption = "Charges"
[Credit_Label].Caption = "Payments"
End If
When I drop this form into the tab control, page1, the reference no longer
works. It tells me it can't find the field 'Bank'.
What do I need to change to have this reference work?