VB .NET - Using ListView to log activity
VB, Visual Studio 2005.
I am using a listview to log some activity in my app.
The problem I have is that every line I add I need to automaticallly scroll down to the last added line (to show the last added log line).
I already tried with:
myListView.items(last_item_index).focused=true
this piece of code only focus the item without showing it (scrolling down to view it)
Anyone knows how to do it ?
Thanks in advance..
Fede.

