Results 1 to 4 of 4

Thread: Listview in .NEt

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2002
    Location
    Pilipinas
    Posts
    441

    Listview in .NEt

    (moved)
    Last edited by martialdc; Jun 3rd, 2007 at 09:28 PM.

  2. #2
    Frenzied Member mar_zim's Avatar
    Join Date
    Feb 2004
    Location
    Toledo Cebu City.
    Posts
    1,416

    Re: Listview in .NEt

    Originally posted by Bluei2
    Hi,
    Just asking on how to use the Listview in .NET?


  3. #3
    Registered User LoNeR's Avatar
    Join Date
    Jun 2004
    Location
    Heliom Prime
    Posts
    20
    listview will be use in displaying data...

    or just use it...

  4. #4
    Fanatic Member brown monkey's Avatar
    Join Date
    Jun 2004
    Location
    Cebu
    Posts
    552
    using listview [general: using control]
    declaration is not instantiation. using a control will require an instantiation.
    Code:
    dim l as listview
    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
  •  



Click Here to Expand Forum to Full Width