We have a form where we want users to select invoice numbers.
Based on their choice we update a table based on those invoice numbers.
The problem is that to have checkboxes on a continuous form it has to be linked to a bit field in the table. We can't keep adding different bit fields as it is getting messy.
Is there another way to list data on a form and have checkboxes against them, maybe storing the invoice numbers in an array?
Just seems an odd way to bind to the data in a table. I know in VB6 that you never do this, the data is separated between DB and application.
Based on their choice we update a table based on those invoice numbers.
The problem is that to have checkboxes on a continuous form it has to be linked to a bit field in the table. We can't keep adding different bit fields as it is getting messy.
Is there another way to list data on a form and have checkboxes against them, maybe storing the invoice numbers in an array?
Just seems an odd way to bind to the data in a table. I know in VB6 that you never do this, the data is separated between DB and application.