123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- // 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
- }
|