CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Thread: ListView

  1. #1
    Join Date
    Aug 2004
    Location
    USA
    Posts
    90

    ListView

    Does anyone have idea of Displaying script in ListView in Staright line on below another and not next to each other...
    I mean I want this way....
    a
    b
    c
    d

    and NOT This way.....
    a b c d

    Thanks
    shash

  2. #2
    Join Date
    May 2003
    Location
    Germany
    Posts
    936

    Re: ListView

    change the View-property to List or Details.

  3. #3
    Join Date
    Aug 2004
    Location
    USA
    Posts
    90

    Re: ListView

    Yes I have changed the propertu to List but still does not work....
    Thanks
    Shash

  4. #4
    Join Date
    Aug 2004
    Location
    Singapore
    Posts
    4

    Arrow Re: ListView

    hi create List View like below

    ListViewItem item2 = new ListViewItem(comboBoxWaferNo.Text );
    item2.SubItems.Add("a");
    item2.SubItems.Add("b");

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

Featured