R
Richnep
Additional Info:
The row source for these list boxes are the 3 queries (1 for each).
So the fields store thier data (and the fields are bound to) columns
in
tblAntibody. The row source is the free standing table
tblCatalogPartNumbers.
I am doing this all through the Access 2003 front end. This is the
result of
me trying to get the UnqualifiedPartNumber, NIPartNumber, and PIPart
Number
to auto populate once a selection is made in the CatalogNumber field.
So essentally what you have is the catalog number is a combo box
pulling
it's values from the column CatalogNumber in the
tblCatalogPartNumbers. On
the form the other 3 fields are list boxes that pull thier data from
a
query(1 seperate query for each field) that says "Take the selected
catalog
number on the form and match that catalog number in
tblCatalogPartNumbers,
then pull the data for X field (Unqualified Part Number,
NIPARTNUMBER,PIPARTNUMBER) that corresponds to the part number. Here
is the
query SQL:
SELECT qryfrmOEtblListCatalogPartNumbers.UnqualifiedPartNumber,
qryfrmOEtblListCatalogPartNumbers.CatalogNumber
FROM qryfrmOEtblListCatalogPartNumbers
WHERE
(((qryfrmOEtblListCatalogPartNumbers.CatalogNumber)=[Forms]!
[frmOrderEntry]![CatalogNumber]));
Any help is appreciated
The row source for these list boxes are the 3 queries (1 for each).
So the fields store thier data (and the fields are bound to) columns
in
tblAntibody. The row source is the free standing table
tblCatalogPartNumbers.
I am doing this all through the Access 2003 front end. This is the
result of
me trying to get the UnqualifiedPartNumber, NIPartNumber, and PIPart
Number
to auto populate once a selection is made in the CatalogNumber field.
So essentally what you have is the catalog number is a combo box
pulling
it's values from the column CatalogNumber in the
tblCatalogPartNumbers. On
the form the other 3 fields are list boxes that pull thier data from
a
query(1 seperate query for each field) that says "Take the selected
catalog
number on the form and match that catalog number in
tblCatalogPartNumbers,
then pull the data for X field (Unqualified Part Number,
NIPARTNUMBER,PIPARTNUMBER) that corresponds to the part number. Here
is the
query SQL:
SELECT qryfrmOEtblListCatalogPartNumbers.UnqualifiedPartNumber,
qryfrmOEtblListCatalogPartNumbers.CatalogNumber
FROM qryfrmOEtblListCatalogPartNumbers
WHERE
(((qryfrmOEtblListCatalogPartNumbers.CatalogNumber)=[Forms]!
[frmOrderEntry]![CatalogNumber]));
Any help is appreciated