Switch to full style
Codes, tips and tricks,discussions and solutions related to C#
Post a reply

How can i display these items in Listview in C#?

Wed Apr 07, 2010 6:12 pm

Hi all,

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 ?

Cheers,
Code:
------------BEGIN---------------
private 
void btn_CreateReport_Click(object senderEventArgs e)
{

lstview.Items.Clear();
int counterOfArraylist mcarraylist.Count;
string[] str = new string[counterOfArraylist];
for (
int i 0str.Lengthi++)
{

str[i] = mcarraylist[i].ToString();

}
lstview.Items.Add(new ListViewItem(str)); 
}
------------
END--------------- 




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();
}

private void Form1_Load(object sender, EventArgs e)
{

}

private void button1_Click(object sender, EventArgs e)
{

string[] str=new string[71];
for (int i = 0; i <= 70; i++)
{
str[i] = String.Format("{0}",i);//Please Insert your data in array//

}
for (int j = 0; j < str.Length; j++)
{
listView1.Items.Add(str[j]);
}
}
}
}

Post a reply
  Related Posts  to : How can i display these items in Listview in C#?
 not taking items using jquery     -  
 display list     -  
 Here is how to display any 2d array     -  
 SEVEN SEGMENT DISPLAY     -  
 Can I display same vertically on right side?     -  
 Display a different image for each day of the week     -  
 Display images on jsp from servlet     -  
 Need Java program for display the CPU usage     -  
 display the content of text file     -  
 CME display calling number without leading 0     -  

Topic Tags

C# Arrays