D
David
Hope I've expressed my question correctly in the title.
I have two separate tables.
Table1:
fldIDRepairName << AutoNumber and Primary Key
fldRepairName << Index, Unique
fldIDGroupName << Link to Foreign Table
Table 2 ( I call this Foreign):
fldIDGroupName <<AutoNumber and Primary Key
fldGroupName
==================
If trying to load an alphabetical list of the "fldRepairName" in Table 1:
and
at the same time get the "fldGroupName" into a second list box??
===================
If I loop "Table 1"
Do Until .EOF
List1.AddItem !fldRepairName
to Seek the GroupName in Table2
using "fldIDGroupName" and then use the Returned
GroupName to load it as
List2.AddItem strGroupName
Or ???
Do some form of Query?
Or
Best way since it is in another Table?
..MoveNext
Loop
I have two separate tables.
Table1:
fldIDRepairName << AutoNumber and Primary Key
fldRepairName << Index, Unique
fldIDGroupName << Link to Foreign Table
Table 2 ( I call this Foreign):
fldIDGroupName <<AutoNumber and Primary Key
fldGroupName
==================
If trying to load an alphabetical list of the "fldRepairName" in Table 1:
and
at the same time get the "fldGroupName" into a second list box??
===================
If I loop "Table 1"
Do Until .EOF
List1.AddItem !fldRepairName
to Seek the GroupName in Table2
using "fldIDGroupName" and then use the Returned
GroupName to load it as
List2.AddItem strGroupName
Or ???
Do some form of Query?
Or
Best way since it is in another Table?
..MoveNext
Loop