C
cb
HI-
I'm having problems getting a list and/or combo box
selection to be passed to a query. If I type in Values
for either a list box or a combo box, it passes the
values to the query without any problem - but when I use
a table row - it will not recognise the value (it returns
a blank query.
I've checked that all the property options are the same.
I've set these up on the same form,(manual vrs. table
row) using the same values....
I just can't figure out what I'm doing wrong - or why it
won't work withthe table info. I could type it in, but
then the maintenance is more tedious. Any ideas that
might help me out?
Here is a copy of my SQL statement:
SELECT tblContacts.LastName, tblContacts.FirstName,
tblContacts.Address1, tblContacts.Address2,
tblContacts.Gender, tblGrpMembers.GroupName,
tblContacts.City, tblContacts.State, tblContacts.Zip,
tblContacts.Phone, tblContacts.FaxNumber,
tblContacts.Email
FROM tblContacts INNER JOIN tblGrpMembers ON
tblContacts.ContactID = tblGrpMembers.ContactID
WHERE (((tblGrpMembers.GroupName)=[Forms]!
[frmSelectGroup]![List7]))
ORDER BY tblContacts.LastName;
The only thing that changes between to 4 types is the
List7(manual) to List 20(from table row) or combo13(from
table row) or combo17(manual) - the 2 manuals work - the
2 tables do not!
ANY Ideas would be greatly appreciated!!!!
thanks - Cindy
I'm having problems getting a list and/or combo box
selection to be passed to a query. If I type in Values
for either a list box or a combo box, it passes the
values to the query without any problem - but when I use
a table row - it will not recognise the value (it returns
a blank query.
I've checked that all the property options are the same.
I've set these up on the same form,(manual vrs. table
row) using the same values....
I just can't figure out what I'm doing wrong - or why it
won't work withthe table info. I could type it in, but
then the maintenance is more tedious. Any ideas that
might help me out?
Here is a copy of my SQL statement:
SELECT tblContacts.LastName, tblContacts.FirstName,
tblContacts.Address1, tblContacts.Address2,
tblContacts.Gender, tblGrpMembers.GroupName,
tblContacts.City, tblContacts.State, tblContacts.Zip,
tblContacts.Phone, tblContacts.FaxNumber,
tblContacts.Email
FROM tblContacts INNER JOIN tblGrpMembers ON
tblContacts.ContactID = tblGrpMembers.ContactID
WHERE (((tblGrpMembers.GroupName)=[Forms]!
[frmSelectGroup]![List7]))
ORDER BY tblContacts.LastName;
The only thing that changes between to 4 types is the
List7(manual) to List 20(from table row) or combo13(from
table row) or combo17(manual) - the 2 manuals work - the
2 tables do not!
ANY Ideas would be greatly appreciated!!!!
thanks - Cindy