ZKHADI
Member
- Local time
- Today, 15:53
- Joined
- Apr 5, 2021
- Messages
- 118
hi guys i am working on a small database.
in which i have student profile linked with Fee Table this fee is just for print i dont need it in accounts yet.
when the student pay the Fee then i want append this current row into Paid Fee Form.
for that reason i made an append query like this.
now the reason is when i click the checkbox on the FeeTF form the current record appended to PaidFeeF
but when i goto the main form and from subform i click the checkbox i get this enter parameter message. which says to type the ID of current record.
is there any way not to get this message and the current record appended into Fee paid Form
in which i have student profile linked with Fee Table this fee is just for print i dont need it in accounts yet.
when the student pay the Fee then i want append this current row into Paid Fee Form.
for that reason i made an append query like this.
- INSERT INTO PaidFeeT ( FacultyPaid, MonthYearPaid, SecurityFeePaid, AdmissionFeePaid, TotalFeePaid, SR )
- SELECT FeeT.Faculty, FeeT.MonthYear, FeeT.Security, FeeT.AdmissionFee, FeeT.TotalFee, FeeT.ID
- FROM FeeT
- WHERE (((FeeT.SR)=[forms]![FeeTF]![SR]));
now the reason is when i click the checkbox on the FeeTF form the current record appended to PaidFeeF
but when i goto the main form and from subform i click the checkbox i get this enter parameter message. which says to type the ID of current record.
is there any way not to get this message and the current record appended into Fee paid Form