(moved)
Printable View
(moved)
Quote:
Originally posted by Bluei2
Hi,
Just asking on how to use the Listview in .NET?
:eek2:
listview will be use in displaying data...
or just use it...
using listview [general: using control]
declaration is not instantiation. using a control will require an instantiation.
is declaring a listview. but you can't use that afterwards. you have to instantiate that.Code:dim l as listview
then u can use it. you can change add items, blah blah.Code:l=new listview
'or
dim l2 as new listview
hope this helps...Quote:
it's like having a class House. it's still a blueprint of the house. you can't live with it. instantiating it will cause the house to really exist. you have to construct [in oop: instantiate] the class House. then you can have something like House.Demolish() or something. hehe.