VC++6.0中,如何向文档窗口添加一个ClistView控件,并显示出来?
2个回答
展开全部
文档窗口的话需要将其基类设为CListView,然后用定义一个列表控件类的引用,CListCtrl& m_ListCtrl = GetListView(),(一定要是引用),之后通过它的成员函数InsertColumn(),InsertItem()分别添加列表头和列表项即可。
追问
还是不明白,能说得清楚一点吗?
追答
CListCtrl& m_ListCtrl = GetListCtrl();
CStudentSet cSet;
cSet.Open();
CODBCFieldInfo field;
//create list head
for( UINT i = 0; i < cSet.m_nFields; i++ )
{
cSet.GetODBCFieldInfo( i , field ); m_ListCtrl.InsertColumn( i, field.m_strName, LVCFMT_LEFT, 100 );
}
//insert list item
int nItem = 0;
CString str;
while( !cSet.IsEOF() )
{
for( UINT i = 0; i < cSet.m_nFields; i++ )
{
cSet.GetFieldValue( i , str );
if( i == 0 ) //if this is the first row which is to say that it is the head
m_ListCtrl.InsertItem( nItem, str );
else //if it is the content of the data sourse
m_ListCtrl.SetItemText( nItem, i, str );
}
nItem++;
cSet.MoveNext(); //move to next record
}
cSet.Close();
这是用于以列表形式显示数据库内容的代码,希望对你有帮助,要学会查MSDN
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询