hi ,
how can i start my count in a lisview with 1 .// default is 0.
listview.items. count=1;// not permissed;
thanks
how can i start my count in a lisview with 1 .// default is 0.
listview.items. count=1;// not permissed;
thanks
textbox.text=listview.items.count.tostring
textbox.text = (listview.items.count + 1).ToString();
Comment