CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 2013
    Posts
    3

    Listview organizing the layout

    Hi,

    C# is new for me.

    That being said, I was trying to use the ListView option. Went well and I can add items to the list. Then when I run the program, I see like 2 empty bars between the entries.

    So, I intend to do:


    listView1.Items.Add("TEST1");
    listView1.Items.Add("TEST2");
    listView1.Items.Add("TEST3");

    But visually get:


    listView1.Items.Add("TEST1");
    listView1.Items.Add(" ");
    listView1.Items.Add(" ");
    listView1.Items.Add("TEST2");
    listView1.Items.Add(" ");
    listView1.Items.Add(" ");
    listView1.Items.Add("TEST3");
    listView1.Items.Add(" ");
    listView1.Items.Add(" ");

    Could anybody tell me how I can solve this?

  2. #2
    Join Date
    Jun 2013
    Posts
    2

    Re: Listview organizing the layout

    truyen sex dÃ*nh cho người đã trưởng thÃ*nh
    chú ý: chuyên mục truyện người lớn chỉ dÃ*nh cho 18+ mới được vÃ*o

  3. #3
    Join Date
    Jun 2013
    Posts
    3

    Re: Listview organizing the layout

    Also, it seems that when i want to add doubles or integers to the list, i only see 0 showing up in the list. What could that be?

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