This is something elementary, but I just want confirmation whether it can be done.
It seems that there is no way to modify a value of a label in a listview, once it has been added.
I was hoping there could be a way, where I could assign a string ByRef, so when I change the value of the string, it changes in the listview automatically.
Thanks!
You can set the scroll position so the edited field re-appears in the window, if I remember correctly it will be at the top of the visible window (unless it's less that one screen full from the top or bottom).
Yes, I now plan to use a scrollview.
I wanted to create a download list (like in the browser), which is also expandable/collapsible. and shows the current progress of all the downloads.
Initially I thought I could get away with using a listview (and using cunning indentation to indicate hierarchy), but now I think a scrollview is the way to go.
stevel05,
My download progress timer is 0.5 seconds, and updated the progress (and hence listview) every 1/2 a second. I think the UI will be too jerky with the scrollposition jumping around.