A little background about my database, it has been created for a club i belong to and I am working on creating a dialog box to invoice everyone on the dues table by selecting all dues paying members, the current year, and the amount to be paid.
Tables:
Calendar Year
Membership Fees
Member Personal Info
Member Dues History
I created a form that is called Invoice Active Members. In the form i have the Calendar year that is in a drop down, Membership fees in a drop down has the amount for the current year, and a unbound text box with three columns(MemberID, First Name, and Last Name) from the Member Personal info Table sorted by criteria stating that the member pays dues and is active.
I have the form built with a select all button for all of the members and a close button, but i am trying to create another button that will allow me to click on the Invoice (a button created) and invoice the selected members. What i mean by invoice is to log into the Member Dues History table the following criteria: Member Id, Dues Year (which is the calendar year), Dues Amount (chosen from membership fees drop down). In the unbound text box i have the three columns which i can change to one column and the member id would be the same one needed for the Member Dues History.
In the end what i am trying to do is make it so i do not have to go into 165 members individually and manually enter and every persons dues to be paid for each year.
Please help. I