Hi khushi83, ListView is not suitable to accomplish such task, you'd better think of DataGridView. It has more function to operate data(Insert/update/delete etc.). You can use Insert method of the DataGridViewRowCollection. http://msdn.microsoft.com/en-us/library/s80x2556.aspx For example: dataGridView1.Rows.Insert(0, new DataGridViewRow()); new DataGridViewRow() is a new instance of a row, you can define it before this line of code. Sincerely, Kira Qian
Please mark the replies as answers if they help and unmark if they don't.- Marked As Answer byKira QianMSFT, ModeratorTuesday, July 07, 2009 7:39 AM
-
|