I have linked my primary table, A
, to another table, B
, on A.id=B.id
. B
may have multiple records associated with a given A.id
and so I added a Table Control
to display the relevant fields from B
. This works fine, but I want to be able to:
- Change the information in any displayed field in
B
, - Add a record to
B
, - Delete a record from
B
.
Is there a way to do this from within the table control in the form? Typing text after selecting a field doesn’t do anything and right-clicking only gives the option to copy.