|
-
Jun 17th, 2004, 11:36 PM
#1
Thread Starter
Hyperactive Member
Last edited by martialdc; Jun 3rd, 2007 at 09:28 PM.
-
Jun 18th, 2004, 12:20 AM
#2
Re: Listview in .NEt
Originally posted by Bluei2
Hi,
Just asking on how to use the Listview in .NET?
-
Jun 18th, 2004, 03:04 AM
#3
Registered User
listview will be use in displaying data...
or just use it...
-
Jun 18th, 2004, 03:35 AM
#4
Fanatic Member
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:
l=new listview
'or
dim l2 as new listview
then u can use it. you can change add items, blah blah.
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.
hope this helps...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|