i have form1 which kicks off a form2
in form2 i have a loop which updates a listview
i want the loop to run continuously until i kill the program (i will eventually add multi-threading but have not yet)
the loop displays data in a listview, then sleeps then displays next page of data in listview and then restarts from first page
I added this command in a do loop (with no condition - i want it to run continuously)
The problem is that when I add this code (all in form 2), form 2 doesnt display at allCode:System.Threading.Thread.Sleep(1000)


Reply With Quote