W
wheels1284 via AccessMonster.com
I am currently working on a form called Manage Distribution Lists. What I
want to happen is when I select a list via a ComboBox called ListsCombo, the
Listbox (which right now is named List Box shows me all the users associated
with that list. I have the users stored in a table called
tbl_l_UserDistributionList. So I have a query on the list box where I can
pull back all users and that works fine. However when I try to set up
criteria it doesn't show up. I don't get any errors.
The bound column on the combobox is 1
My query is:
SELECT tbl_l_UserDistributionList.LastName
FROM tbl_l_UserDistributionList
WHERE (((tbl_l_UserDistributionList.LastName)=Eval("Forms![Manage
Distribution Lists]![ListsCombo].Column(1)")));
Suggestions?
want to happen is when I select a list via a ComboBox called ListsCombo, the
Listbox (which right now is named List Box shows me all the users associated
with that list. I have the users stored in a table called
tbl_l_UserDistributionList. So I have a query on the list box where I can
pull back all users and that works fine. However when I try to set up
criteria it doesn't show up. I don't get any errors.
The bound column on the combobox is 1
My query is:
SELECT tbl_l_UserDistributionList.LastName
FROM tbl_l_UserDistributionList
WHERE (((tbl_l_UserDistributionList.LastName)=Eval("Forms![Manage
Distribution Lists]![ListsCombo].Column(1)")));
Suggestions?