How to use RecId as a foreign key in a form
问题 I have a table of items that each reference one other item in another table. We'll say the items are people, and the related items are favorite foods. Table A: Bob:1, Sally:1, Sue:3 Table B: 1:Apples, 2:Bananas, 3:Oranges The "people" are tied to their favorite "foods" by the food RecId, refererenced in the People table. I have a form/grid for editing people. Is there a way to cause the FoodRecId StringView in the grid to convert its value so the RecId numbers are not visible in the grid? I