//一个CListCtrl的多个选择后
while(nSelectedCount--)
{
i=m_lsThreads.GetNextItem(-1, LVNI_SELECTED); SetTimer(i,60000,NULL);

}
//OnTimer()函数:
if(m_strScheme.Find(m_strTime)!=-1)
{
// ==== A new thread to enquiry.
AfxBeginThread(mcProc,this);
}不知道这样会不会达到我想要的效果。
为CListCtrl中的每条记录开起一个新线程,然后根据记录里面的时间内容到时间执行mcProc.哎呀,我也说不清楚。