Total members 11889 |It is currently Mon Mar 18, 2024 10:54 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





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--------------- 





Author:
Newbie
User avatar Posts: 1
Have thanks: 0 time

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


Author:
Newbie
User avatar Posts: 12
Have thanks: 1 time
Post new topic Reply to topic  [ 2 posts ] 

  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
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com