I have a Student Fee program that records school fees for each Student. I have a Student table and an Invoice table that just shows the invoice #, Student ID#, and date of the invoice, then there is an InvoiceDetails table that shows each line of the invoice (invoice #, type of fee (e.g. elementary, Jr high, etc.), and the amount of the fee). All these tables are linked to the Student table. Then I have a Payment table that has a payment # automatically assigned, Student ID#, date of payment, payment amount, cheque #, Notes, and check boxes for whether its a cheque or cash. This table is linked to the Student table.
The problem is that when I go to add an invoice, which is a button “Enter Invoice” on the Student form, I can’t print it. When I click on the “Print Invoice” button, it shows a blank invoice. But when I enter in a payment, and go back to the invoice screen to print the invoice, it shows the invoice (in preview). On the invoice I have a “Total Invoice” then a “Total Payments”, and an “Amount Due”. Could that be where I’m going wrong? Could it be something to do with the total payments? Does it need a payment amount to print?
Jen