Can anyone help.....?
On a form, I have a list box, BestWith
It has a list of foods compatible with wines (mmmmm!!)
The RowSource for the text box is
SELECT [tblFood].[WineID], [tblFood].[FoodID], [tblFood].[Food] FROM tblFood WHERE ((([tblFood].[WineID])=[Forms]![frmWines]![WineID]));
[tblFood].[Food] is the visible field
I would like the values (regardless of how many) to be recorded in a text box, txtFoods on the same form
ie ListBox
Steak
Cheese
Lamb
txtbox
Steak, Cheese, Lamb
Any suggestions greatfully accepted
On a form, I have a list box, BestWith
It has a list of foods compatible with wines (mmmmm!!)
The RowSource for the text box is
SELECT [tblFood].[WineID], [tblFood].[FoodID], [tblFood].[Food] FROM tblFood WHERE ((([tblFood].[WineID])=[Forms]![frmWines]![WineID]));
[tblFood].[Food] is the visible field
I would like the values (regardless of how many) to be recorded in a text box, txtFoods on the same form
ie ListBox
Steak
Cheese
Lamb
txtbox
Steak, Cheese, Lamb
Any suggestions greatfully accepted