M
Mark Kubicki
on my main form [frmSpec] I have a combo control [cboManufacturer], and a
subform [fsubManufacturerAlternates]
On that subform [fsubManufacturerAlternates] is the combo control
[cboManufacturerAlt] whose data source is written as
SELECT Manufacturers.ManufacturerName
FROM Manufacturers
WHERE
(((Manufacturers.ManufacturerName)<>[Forms]![frmSpec]![cboManufacturer]))
ORDER BY Manufacturers.ManufacturerName;
however, it is not finding <>[Forms]![frmSpec]![cboManufacturer]
where should I be looking for this error?
I've checked the spelling,
and
the field Manufacturers.ManufacturerName , as well as it's source
Manufacturers are correct
and
when I type into the "parameter not found" prompt the value of
cboManufacturer, the query presents properly...
thanks in advance,
Mark
subform [fsubManufacturerAlternates]
On that subform [fsubManufacturerAlternates] is the combo control
[cboManufacturerAlt] whose data source is written as
SELECT Manufacturers.ManufacturerName
FROM Manufacturers
WHERE
(((Manufacturers.ManufacturerName)<>[Forms]![frmSpec]![cboManufacturer]))
ORDER BY Manufacturers.ManufacturerName;
however, it is not finding <>[Forms]![frmSpec]![cboManufacturer]
where should I be looking for this error?
I've checked the spelling,
and
the field Manufacturers.ManufacturerName , as well as it's source
Manufacturers are correct
and
when I type into the "parameter not found" prompt the value of
cboManufacturer, the query presents properly...
thanks in advance,
Mark