Jump to content
Xtreme .Net Talk

How can I add the data from an ArrayList into a textbox


Recommended Posts

  • *Experts*
Posted

Depending on what's stored in the ArrayList, the code will be

different for casting each object and getting the text to put into

the textbox. The following code will always work, but it may not

work the way you want if the objects in the ArrayList are not

types that convert to a user-friendly string in the ToString function.

 

foreach (object o in ArrayList1) {
 TextBox1.Text += o.ToString() + System.Environment.NewLine;
}

"Being grown up isn't half as fun as growing up

These are the best days of our lives"

-The Ataris, In This Diary

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...