Hello tsteward,
welcome to basic4ppc!

Some quick (but helpful) answers to your questions:
Quote:
Originally Posted by tsteward
Can I add more than one listview to a form?
|
Yes!
Like this:
Code:
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
Quote:
|
How would i referance each listview?
|
In the example above the listviews are nemed MyListView1 and MyListView2.
Quote:
|
Does removing all rows from a listview freeup that memory?
|
I'm not really sure how .Net handles this.
specci48
P.S.: The last question is a typical for Erel and agraham...
