|
-
December 17th, 2002, 07:07 PM
#1
listview question ?
hi,
I am having difficulty in editing the innner data items inside the listview in column view (details)
herez how I add item
int i = listViewFeeDetails.Items.Count+1;
ListViewItem lv = new System.Windows.Forms.ListViewItem(new string[] {
i.ToString(),
"FEE "+i.ToString(),
"0.00"}, -1, System.Drawing.SystemColors.WindowText, System.Drawing.SystemColors.Window, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))));
listViewFeeDetails.Items.Add(lv);
now by adding one item it adds
"1", "Fee 1", "0.00"
I have kept the labeledit to true but its not allowing inner labels like
"Fee 1" and "0.00" to be editable ?
how do I achieve that?
-thanks in advance
-Paresh
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|