void CZhangjmDlg::OnCheck() 
{
// TODO: Add your control notification handler code here
UpdateData(true);
if(m_Text.IsEmpty()) //如果为空
{
AfxMessageBox("不能为空!");
return;
} if(m_list.FindString(-1,(LPCTSTR)m_Text)==CB_ERR)//判断列表框中是否已经存在
{
        m_list.AddString(m_Text); //加入列表框
m_Text="";
UpdateData(false);
}
else
{
AfxMessageBox("已经存在!");
}
我的程序如上,现在我想修改//加入列表框,我希望能实现m_list 有多个参数的信息,比如姓名 学号 生日 在一行显示
下个记录在下一行显示. 代码怎么写??