我用的是access数据库,查询八个表中的数据,
for(int i =0; i<8;i++)
{  

strsql.Format("SELECT * FROM " + aryTbName[i]+" where UnderTestInsType='%s'",StrType) ;
if(g_pset->IsOpen())
g_pset->Close();
SaveData(strsql);//把数据存储在数组中
}
CResultDisplay::setdisplay()
{ for(i=0;i<m_DetArry.getcount();i++)
{
  DetectedResult DetDataSet=m_DetArry.GetAt(i);//得到第i条记录数
  填充列表控件;
}
}
这些都实现了,但是我们的表以后可能会有几千条记录,如何进行分页?
请专家指点。
我们也不想换成ado,项目已进行一半了。