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 8044895
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T05:22:37+00:00 2026-06-05T05:22:37+00:00

I am trying to make an application that lets me Check items in the

  • 0

I am trying to make an application that lets me Check items in the ListView, and that all works fine, BUT if I add more items to the ListView while items are checked. It unchecks them all because the ListView is reloaded. Is there a way to get around this? So all of my items stay checked even when I add new ones to it? This is my current code.

            TextReader reader = new StringReader(richTextBox1.Text);
            string[] strItems = null;
            foreach (ListViewItem items in listView1.Items)
            {
                items.Remove();
            }
            while (reader.Peek() != -1)
            {
                ListViewItem item = new ListViewItem();
                strItems = reader.ReadLine().Split("-".ToCharArray());
                item.Text = strItems[0].ToString();
                item.SubItems.Add(strItems[1].ToString());
                item.SubItems.Add(strItems[2].ToString());
                item.SubItems.Add(strItems[3].ToString());
                item.SubItems.Add(strItems[4].ToString());
                listView1.Items.Add(item);
            }
  • 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-06-05T05:22:40+00:00Added an answer on June 5, 2026 at 5:22 am

    you can do something like that (and improve it a little by finding a better tag / exist logic):

            TextReader reader = new StringReader(richTextBox1.Text);
            string[] strItems = null;
            while (reader.Peek() != -1)
            {
                string nextRow = reader.ReadLine();
                if (!listView1.Items.ContainsKey(nextRow.GetHashCode().ToString()))
                {
                   ListViewItem item = new ListViewItem();
                   item.Name = nextRow.GetHashCode().ToString();
                   strItems = nextRow .Split("-".ToCharArray());
                   item.Text = strItems[0].ToString();
                   item.SubItems.Add(strItems[1].ToString());
                   item.SubItems.Add(strItems[2].ToString());
                   item.SubItems.Add(strItems[3].ToString());
                   item.SubItems.Add(strItems[4].ToString());
                   listView1.Items.Add(item);
                }
            }
    

    The only problem with that is if you are trying to delete items that won’t be in the new read strings, but you can solve it too (tell me if you need it and i will add it)

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

Sidebar

Related Questions

I'm trying to make an application that - in some stage - stores all
I have been trying to test my application to make sure that all the
Im trying to make a very simple application that lets my client create their
I'm trying to make an application that changes the UI every minute, but I'm
I am trying to make an application that will fill in the info i
I am trying to make a application that uses the standard Split View Application
I am trying to make an application that opens a certain file type (similar
I am currently trying to make an application that allows the user to create
I am trying to make a simple application that turns a character to look
I'm trying to make a little console application that is able to deal with

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.