D
Dom
A program I have contains a Listview that keeps track of different
stages in the program. For example, a line in the listview may
indicate "starting to read the database", or "producing averages".
The method used to write these lines ends with:
lstview1.Refresh();
this.Refresh();
The second line seems like overkill to me, but I added it because the
first line did not work alone. In fact, the two lines together don't
work either. This confuses the users, who think the program is stuck.
How do I refresh things?
Dom
stages in the program. For example, a line in the listview may
indicate "starting to read the database", or "producing averages".
The method used to write these lines ends with:
lstview1.Refresh();
this.Refresh();
The second line seems like overkill to me, but I added it because the
first line did not work alone. In fact, the two lines together don't
work either. This confuses the users, who think the program is stuck.
How do I refresh things?
Dom