S
Sheldon
I created a form with a list box on it based on a query,
SELECT [tblVendors].[VendorNumber], [tblVendors].
[VendorName]
FROM tblVendors
ORDER BY [tblVendors].[VendorName];
This works just fine. I also have a sub form attached to
the main form and I am trying to put a list box on this
form based on the query
SELECT tblContacts.*, tblContacts.VendorNumber
FROM tblContacts INNER JOIN tblVendors ON
tblContacts.VendorNumber = tblVendors.VendorNumber
WHERE (((tblContacts.VendorNumber)=[me].[lstVendorLkup].
[value]));
I can't even build the list box thru the wizard. I get
the following msg
"No value given for one or more required parameter."
My guess is that the query is wrong, but don't know why.
Any suggestions
Thanks
SELECT [tblVendors].[VendorNumber], [tblVendors].
[VendorName]
FROM tblVendors
ORDER BY [tblVendors].[VendorName];
This works just fine. I also have a sub form attached to
the main form and I am trying to put a list box on this
form based on the query
SELECT tblContacts.*, tblContacts.VendorNumber
FROM tblContacts INNER JOIN tblVendors ON
tblContacts.VendorNumber = tblVendors.VendorNumber
WHERE (((tblContacts.VendorNumber)=[me].[lstVendorLkup].
[value]));
I can't even build the list box thru the wizard. I get
the following msg
"No value given for one or more required parameter."
My guess is that the query is wrong, but don't know why.
Any suggestions
Thanks