Originally posted by: Miwa
Does anyone knows how to get the information available in the listview control into a edit box which i can edit? thanx :) i have managed to read my information in the listview by clicking the icon, but i cant extract the information from the listview by using a button.
Originally posted by: Ramesh Nagaraj
First, Great Work ! When say Ok while the 2 progress bars are active, The dialog box gets deleted but there is a background process running as "ProgressList.ex" which I have to forcefully EndTask.
Originally posted by: Krakhead
I was writing a PC based embedded OS profiling tool last year and needed to embed progress bars into a list view. I wrote a class very similar to this one and found updating and resizing the list view to be very, very sluggish. The "sluggishness" is do to the fact that the progress control is still a full fledged window and carries with it the same enormous amount of overhead. I then sat down and wrote my own class to draw the progress bars directly onto the list view. Not as flexible, but the perfomance is a lot better...
ReplyOriginally posted by: shocklet
I implemented this by drawing progress itself.
I don't know what is the advantage of your approach :)
Originally posted by: wimel
There are some major redraw problems when resizing.
When broading a column the 'drawlines' are draw on the following colum.
The progressbar doesn't fit exactly in the culumn. The progressbar is anapping to some other position.
I'm not familiar with hooks, do u have any suggestion to correct the bug(s)?
Reply
Originally posted by: Davide Calabro
If you resize the column containing the control (in this case the "third column") the progress bar is not redrawn correctly.
Bye!