Hello, I created a Tabular Form (called TabRecordForm) which consists of seven columns of data. I locked the last six columns so that the only column the user can modify is a check-box field in the first column. The idea is the user checks the records he wants to display and then clicks a command button to view them in detail.
The problem I am having is that if the user checks four boxes only the first three records are displayed (because the fourth record’s check-box never gets updated). I get around this by closing the Tabular Form (to update the last record) and then immediately re-open it. This works fine but it looks rather funky to see the form momentarily disappear and then reappear.
So my question is, is there a way I can update all of the records on the Tabular Form without actually closing (and re-opening) it?
I saw that there is a Form.Requery and Form.Refresh statement but I cannot seem to get them to work. Do these statements work with Tabular Forms? Thank you for your time.
The problem I am having is that if the user checks four boxes only the first three records are displayed (because the fourth record’s check-box never gets updated). I get around this by closing the Tabular Form (to update the last record) and then immediately re-open it. This works fine but it looks rather funky to see the form momentarily disappear and then reappear.
So my question is, is there a way I can update all of the records on the Tabular Form without actually closing (and re-opening) it?
I saw that there is a Form.Requery and Form.Refresh statement but I cannot seem to get them to work. Do these statements work with Tabular Forms? Thank you for your time.