I have an ArrayList that contains 70 items. I would like to display these items in Listview. Therefore, I used the following code. However, When I press the button, program will only display the first seven items in the arrayList. The rest of items are not being displayed in listview. How can I fix this problem ?
lstview.Items.Clear(); int counterOfArraylist = mcarraylist.Count; string[] str = new string[counterOfArraylist]; for (int i = 0; i < str.Length; i++) {
Re: How can i display these items in Listview in C#?
Sun May 23, 2010 7:02 pm
hi, I hope this code help you.
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms;
namespace listview { public partial class Form1 : Form { public Form1() { InitializeComponent(); }