jatfill
Registered User.
- Local time
- Today, 12:40
- Joined
- Jun 4, 2001
- Messages
- 150
Hello,
I have created a form that returns a list of contacts with an outstanding balance greater than zero. the form is unbound, and the list results are being pulled from a query that returns the name & company name, and a charge/payment/balance summary... the bound column on the list box is the contactID, which is hidden to the user, they just see the name, company, and balance.
I created a query that gets all of the user's detailed information based on the record selected in the form:
WHERE (((tablename.contactID)=[Forms]![formname]![listbox]))
a report is printed based on the query once a button is pressed on the form.
The problem is, I want to be able to print a selected range of names, i.e. use the Extended multi-select feature of the list box... if a user selects 5 records, they get a report printed for each record, but my query will not return multiple results when I try to make the list box a multi-selectable one.
If I use just the single select option on the form listbox, the entire process works fine.
Anyone know what I'm doing wrong? Thanks in advance, as always!
I have created a form that returns a list of contacts with an outstanding balance greater than zero. the form is unbound, and the list results are being pulled from a query that returns the name & company name, and a charge/payment/balance summary... the bound column on the list box is the contactID, which is hidden to the user, they just see the name, company, and balance.
I created a query that gets all of the user's detailed information based on the record selected in the form:
WHERE (((tablename.contactID)=[Forms]![formname]![listbox]))
a report is printed based on the query once a button is pressed on the form.
The problem is, I want to be able to print a selected range of names, i.e. use the Extended multi-select feature of the list box... if a user selects 5 records, they get a report printed for each record, but my query will not return multiple results when I try to make the list box a multi-selectable one.
If I use just the single select option on the form listbox, the entire process works fine.
Anyone know what I'm doing wrong? Thanks in advance, as always!