Sub Globals
End Sub
Sub App_Start
Form1.Show
AddObject("MyListView1","ListView")
AddObject("MyListView2","ListView")
MyListView1.New1("Form1",5,5,100,140)
MyListView2.New1("Form1",120,5,100,140)
End Sub
I recommend you to add the objects with Tools - Add Object.
That way the IDE will be able to help you with the list of methods.
Fillipo wrote the ListView library so he is the real expert, however AFAIK removing the rows will free that memory.
Generally speaking in most cases the .Net Framework will take care of releasing unused allocated memory.