VC++6.0中,如何向文档窗口添加一个ClistView控件,并显示出来?

 我来答
毓安春0iw
2011-06-26
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
文档窗口的话需要将其基类设为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
烟雨江南1118
2011-06-22
知道答主
回答量:35
采纳率:0%
帮助的人:10.3万
展开全部
1、拖一个ClistView控件进去
2、定义个变量
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式