int nIndex=m_strip.GetItemCount();
LV_ITEM lvItem;
lvItem.mask=LVIF_TEXT;
lvItem.iItem=nIndex;
lvItem.iSubItem=0;
CString temp;
temp.Format("%d",id);
lvItem.pszText=(char*)(LPCTSTR)temp;
VS2010里会报不能将char*类型分配到LPSTER类型的实体。