I am reading a text file with many thousands of records. Each record is evaluated and depending on the results of that evaluation a procedure is followed. For the purpose of this exercise, it is irrelevant what the procedures do. I have created a Progress bar which is working perfectly. However, at the start of the process, I try to display the start time in either a TextBox or Label. Also, after reading each record, I increment a record count and calculate the elapsed time. Before retrieving the next record I try to display the calculated results, for example:
```
tbxStartTime = Format(Now, "dd/mm/yyyy, hh:mm:ss")
tbxRecordCount = RecordCount
tbxElapsedTime = ElapsedTime
```
But nothing displays. The progress bar displays correctly. When all the records have been read the relevant TextBox's display the calculated values.
How do I display the values in the TextBox's dynamically while the program is running?