Hello
I am using a form with a subform. The subform lists a collection of jobs, each with an estimated duration and an actual duration. I'm using the progress bar to give a graphic indication of progress by doing:
I have an afterUpdate event which will run the following code to update the progress bar:
Problem is, it updates the progress bar on all the records, not just the current record. So all the progress bars look the same like this:
Any help would be much appreciated
Daniel
I am using a form with a subform. The subform lists a collection of jobs, each with an estimated duration and an actual duration. I'm using the progress bar to give a graphic indication of progress by doing:
I have an afterUpdate event which will run the following code to update the progress bar:
Code:
progress.Value = (CDbl(subtaskDuration) / CDbl(subtaskEstimatedDuration)) * 100
Problem is, it updates the progress bar on all the records, not just the current record. So all the progress bars look the same like this:
Any help would be much appreciated
Daniel