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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:06:12+00:00 2026-05-27T18:06:12+00:00

I wanna make a small code block about c #. first think a listbox

  • 0

I wanna make a small code block about c #.

first think a listbox with elements.
then think a blank textbox.

when I write a letter to textbox(dont think just letter, think about a word ,I split it with textbox1_textchanged ),if an element dont have the word it must be deleted from listbox.

example:

here are listbox elements :

abraham
michael
george
anthony

when i type “a”,I want michael and george to be deleted,then when I type “n” I want abraham to be deleted(at this point total string is “an”)…

Thanks by now (:

  • 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-27T18:06:13+00:00Added an answer on May 27, 2026 at 6:06 pm
    private void textBox1_TextChanged(object sender, EventArgs e)
        {
            for (int i = 0; i < listBox1.Items.Count; i++)
            {
                string item = listBox1.Items[i].ToString();
                foreach(char theChar in textBox1.Text)
                {
                    if(item.Contains(theChar))
                    {
                        //remove the item, consider the next list box item
                        //the new list box item index would still be i
                        listBox1.Items.Remove(item);
                        i--;
                        break;
                    }
                }
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i've built my first wpf application, nothing fancy, but i wanna make it look
I wanna make change in css class every 3 loops. In the first three
So I wanna make a small (64k) demo--nothing super impressive, just for the coding
I'm a bit confused about pointer arrays and I just wanna make sure I'm
I wanna make use of the Ternary Operator with an object. if($msg == 'hello'){
I will make upload my application today to my homepage and wanna to have
Wanna write a RegEx to validate a driving license. if it doesn't start with
I wanna get the Timedate value from another page using request.querystring and then use
I wanna make a query that fetches only the rows that has 'cost' value
i wanna make an attribute of an element to be unique like primary key.

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.