Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 316961
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:25:54+00:00 2026-05-12T08:25:54+00:00

I create a listview and the number of columns are determined at runtime. I

  • 0

I create a listview and the number of columns are determined at runtime. I have been reading texts on the web all over about listview( and I still am) but I wish to know how to add items to a specific column in listview I thought something like:

m_listview.Items.Add("1850").SubItems.Add("yes");

would work assuming the “1850” which is the text of the column would be the target column.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T08:25:54+00:00Added an answer on May 12, 2026 at 8:25 am

    ListViewItems aren’t aware of your ListView columns.

    In order to directly reference the column, you first need to add all the columns to the ListViewItem.

    So… lets say your ListView has three columns A, B and C;
    This next bit of code will only add data to column A:

    ListViewItem item = new ListViewItem();
    item.Text = "Column A";
    
    m_listView.Items.Add(item);
    

    To get it to add text to column C as well, we first need to tell it it has a column B…

    ListViewItem item = new ListViewItem();
    item.Text = "Column A";
    item.SubItems.Add("");
    item.SubItems.Add("Column C");
    
    m_listView.Items.Add(item);
    

    So now we’ll have columns A, B and C in the ListViewItem, and text appearing in the A and C columns, but not the B.

    Finally… now that we HAVE told it it has three columns, we can do whatever we like to those specific columns…

    ListViewItem item = new ListViewItem();
    item.Text = "Column A";
    item.SubItems.Add("");
    item.SubItems.Add("Column C");
    
    m_listView.Items.Add(item);
    
    m_listView.Items[0].SubItems[2].Text  = "change text of column C";
    m_listView.Items[0].SubItems[1].Text  = "change text of column B";
    m_listView.Items[0].SubItems[0].Text  = "change text of column A";
    

    hope that helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been trying to create a ListView which I can sort using drag
I have create a listview of Contact numbers , the list item contains the
I have a listview that contain several EditTexts created dynamically according to the number
I want to create a listview populated with items I have transferred to this
I have a ListView where I want each item to have an ID number
I'm trying to create a check/uncheck all CheckBox for a number of CheckBoxes that
I have a simple ListView and on that ListView I have placed a number
I'm trying to create a UserControl that contains a ListView and a number of
I have a custom listview row that contains a number of textView components. Instead
We create a listview with 5 columns. In one function we add data in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.