// ClientCenter.cpp : implementation file // #include "stdafx.h" #include "dbserver.h" #include "ClientCenter.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CClientCenter dialog CClientCenter::CClientCenter(CWnd* pParent /*=NULL*/) : CDialog(CClientCenter::IDD, pParent) { //{{AFX_DATA_INIT(CClientCenter) // NOTE: the ClassWizard will add member initialization here //}}AFX_DATA_INIT } void CClientCenter::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CClientCenter) DDX_Control(pDX, IDC_LIST3, m_List2); DDX_Control(pDX, IDC_LIST1, m_List1); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CClientCenter, CDialog) //{{AFX_MSG_MAP(CClientCenter) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CClientCenter message handlers BOOL CClientCenter::OnInitDialog() { CDialog::OnInitDialog(); // TODO: Add extra initialization here m_List1.AddString("ά���������10*10"); m_List1.AddString("����˿����16*16"); m_List1.AddString("��ӡΨ����־��"); m_List1.AddString("-------"); m_List1.AddString("���������36��"); m_List1.AddString("Ӣ�����"); m_List1.AddString("-------"); m_List1.AddString("Ǯ����4��"); m_List1.AddString("-------"); m_List1.AddString("ȫ����Ƭ���"); m_List2.AddString("ά���������10*10->�ѷ���᳧2014-01-01->���"); m_List2.AddString("����˿����16*16->�ѷ���᳧2014-01-01->���"); m_List2.AddString("��ӡΨ����־��->�ѷ���᳧2014-01-01->���"); m_List2.AddString("-------"); m_List2.AddString("���������36��->�ѷ���2014-01-01->���"); m_List2.AddString("Ӣ�����->�ѷ���2014-01-01->���"); m_List2.AddString("-------"); m_List2.AddString("Ǯ����4��->�ѷ�������2014-01-01->���"); return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE }