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

  • Home
  • SEARCH
  • 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 6728255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:08:54+00:00 2026-05-26T10:08:54+00:00

I am having a problem with displaying a content from a ArrayList() stored as

  • 0

I am having a problem with displaying a content from a ArrayList() stored as such:

private void btnEnter_Click(object sender, EventArgs e)
{
    public ArrayList books = new ArrayList();
    books = new ArrayList();

    // first I am just using lebels for easier input.
    books.Add(new Book(label1.Text, label2.Text, label3.Text, label4.Text, float.Parse(label5.Text)));
}

As we see I am using a constructor to store data with 5 elements. The problem is that I am not sure how to display the data using foreach loop:

public ArrayList books;
public BookList()
{
    InitializeComponent();

    foreach (string data in books)
        txtBookList.Text = data.ToString();
}

I am trying to display the content in multiline textbox and I am not sure what I’m exacly doing wrong. Any tips?

Here is the code for Book() constructor:

public Book(string title, string firstName, string lastName, string publisherName, float price)
: base(title, publisherName, price)
{
    this.authorFirstName = firstName;
    this.authorLastName = lastName;
} 

— EDIT —
One person pointed out that I do want to display the ArrayList as a objects. How would I do it?

Regards.

HelpNeeder

  • 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-26T10:08:54+00:00Added an answer on May 26, 2026 at 10:08 am

    You have a couple of problems here – the main one being that your ArrayList books isn’t a collection of strings, it’s a collection of book objects. Therefore your foreach loop needs to iterate through book objects instead of strings:

        foreach (Book b in books)
        {
            txtBookList.Text += b.authorFirstName;
            txtBookLIst.Text += b.authorLastName;
        }
    

    The second problem is that you are trying to assign a string value to the txtBookList variable, which I’m assuming is a textbox. Try using the Text property instead and use the += operator to append new strings to the value, like above.

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

Sidebar

Related Questions

I am having a problem while retrieving data from an ArrayList and displaying them
I'm having a problem displaying data from a function to text box within a
Im having a problem with removing non-utf8 characters from string, which are not displaying
I'm having trouble displaying an image in a UIWebView. I retrieve html content from
I'm having a problem displaying an AlertDialog from within the onOptionsItemSelected method. That is,
I'm having a problem displaying two silverlight movies from different domains . They are
My problem is that I have a user that is having a problem displaying
I am having a very strange problem with pound signs displaying incorrectly (or not
We're having problem with a huge number of legacy stored procedures at work. Do
I am having a bit of a problem displaying the taskbar icon for a

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.