I need to build matrix of checkboxes in Access form via VBA, not as standalone VB application. This form will read rows from one table POINTS and and base of it follows build matrix of checkboxes in the body. Each row from this table has two attributes ID and description.
In case that given checkbox is checked the appropriate relation (IDFrom,IDTo) is inserted into table RELATION(each row has columns IDFROM, IDTOO) otherwise deleted.
How can I do something as in the attachment? Does exist some suitable component as datagridview with checkboxes or other. How to build dynamically that form body? I note that count of rows in table POINTS can be variable.