nItem = priya_list.InsertItem(0, ccetre);
You're inserting at the beginning of the control. That's that the 0 is doing. You need to insert at the end.
nItem = priya_list.InsertItem(priya_list.GetItemCount(), ccetre);