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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T15:06:47+00:00 2026-06-02T15:06:47+00:00

I have a project that deals with barcodes. It is basically an inventory tracking

  • 0

I have a project that deals with barcodes. It is basically an inventory tracking program that tells us what we have in stock at any given time. Each barcode has a text file containing relevant information. Each file contains the following lines of information:

  1. “Office Printer” <- this is the item description
  2. “1” <- 0 equals out of stock, 1 equals in stock
  3. “irrelevant information” <- any additional information not used in sorting

There are approximately 200+ different text files That I need to search first through the item description and then search again through those to see if they are in stock. Ideally it would then display an integer listing the number in stock, but it could also just display the names of the text files if that would be easiest. Here is my code so far. comboBox1 has a drop down list of possible items to search by. richTextbox1 is what I have setup to display the search results. Right now it only shows one “1”.

EDIT
Thanks to VBRonPaulFan for the breakthrough. This shows how many items are in stock based on the selection of the comboBox. The only other thing I am going to research is have it display the number of items in stock rather than listing them all. Thanks!

    private void searchButton_Click(object sender, EventArgs e)
    {
        richTextBox1.Text = "";

        foreach (string fileName in Directory.GetFiles("C:\\ITRS_equipment_log\\", "*.txt"))
        {

            using (StreamReader sw = new StreamReader(fileName))
            {
                string Description = sw.ReadLine();
                bool InStock = sw.ReadLine().Trim() == "1";

                if (Description.Contains(comboBox1.Text) && InStock == true)
                {
                    richTextBox1.AppendText("Item '" + Description + "' is " + (InStock ? "in" : "not in") + " stock.\r\n");
                }
            }
        }
    }
  • 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-02T15:06:50+00:00Added an answer on June 2, 2026 at 3:06 pm

    everytime you find a ‘match’, you’re overwriting the value in richTextBox1 with the updated value. it doesn’t just ‘stop’ after the first file, it just displays the last value it’s set to when it’s done running through all of the files…

    it’s not real clear on how you want to display this to the user… but a rich text box probably isn’t the best way. a combobox would probably be better. this looks like basically what you want to do though?

    private void searchButton_Click(object sender, EventArgs e)
    {
        foreach (string fileName in Directory.GetFiles("C:\\ITRS_equipment_log\\", "*.txt"))
        {
            using (StreamReader sw = new StreamReader(fileName))
            {
                string Description = sw.ReadLine();
                bool InStock = sw.ReadLine().Trim() == "1";
    
                if (Description.Contains(comboBox1.SelectedText))
                {
                    richTextBox1.AppendText("Item '" + Description + "' is " + (InStock ? "in" : "not in") + " stock.\r\n");
                }
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a project that comprises pre-build Dll modules, built some time in the
I have a project that involves polling a hardware switch each update and converting
I am working on a research project that deals with social networks. I have
I have an assignment for an ASP.NET project that deals with storing and retrieving
Does anybody know of any open source project that deals with creating forms or
I have a project that is supposed to run on different (at least 2)
I have a project that uses two third party libraries, both of which make
I have a project that targets both Mac OS X 10.4 and 10.5, where
I have a project that is built and managed by Maven. I have a
I have a project that I want to push to a Mercurial repository on

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.