BBK
Registered User.
- Local time
- Today, 08:43
- Joined
- Jul 19, 2010
- Messages
- 71
Once again Forms are providing me with a problem.
I have two forms
On one form (Lease Form) i enter a monthly rent price and the payment frequency (eg: Weekly or Monthly )
On the second form (Paymeny Form) i want to display the monthly rent price from the Lease form as the amount due and the payment frequency automatically).
On Payment Form i have the control source as:
AmountDue Control source set to -> MonthlyRent
PaymentFrequency source set to -> PaymentFrequency
Payment still wont display these 2 values for me. I have tried doing it with QBE and still no luck.
Any help would be greatly appreciated.
Thank you.
I have two forms
On one form (Lease Form) i enter a monthly rent price and the payment frequency (eg: Weekly or Monthly )
On the second form (Paymeny Form) i want to display the monthly rent price from the Lease form as the amount due and the payment frequency automatically).
On Payment Form i have the control source as:
Code:
SELECT Payment.*, Lease.MonthlyRent, Lease.PaymentFrequency FROM Lease INNER JOIN Payment ON Lease.LeaseID = Payment.LeaseID;
PaymentFrequency source set to -> PaymentFrequency
Payment still wont display these 2 values for me. I have tried doing it with QBE and still no luck.
Any help would be greatly appreciated.
Thank you.
Last edited: