我的列表控件项只会在功能停止时显示。我需要在函数运行时一个一个显示列表控件项。
另一个函数不断地传递值,HRESULT function()
直到数据处理完成。
//function to show the list item
HRESULT function(datetime, strNumOfGroup, strDisributionRegion, strSpeed){
m_count = m_hyperTerminal.GetItemCount();
items = m_hyperTerminal.InsertItem(m_count, datetime);// Five columns in the list control
m_hyperTerminal.SetItemText(items, 1, strNumOfGroup);
m_hyperTerminal.SetItemText(items, 2, strCompactness);
m_hyperTerminal.SetItemText(items, 3, strDistributionRegion);
m_hyperTerminal.SetItemText(items, 4, strSpeed);
}