ListPage.cpp
上传用户:cuijiu615
上传日期:2007-03-28
资源大小:45k
文件大小:4k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. // ListPage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "phonebook.h"
  5. #include "ListPage.h"
  6. #include "mdbfield.h"
  7. #include "PhoneSheetDlg.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // ListPage property page
  15. IMPLEMENT_DYNCREATE(ListPage, CPropertyPage)
  16. ListPage::ListPage() : CPropertyPage(ListPage::IDD)
  17. {
  18. //{{AFX_DATA_INIT(ListPage)
  19. // NOTE: the ClassWizard will add member initialization here
  20. //}}AFX_DATA_INIT
  21. }
  22. ListPage::~ListPage()
  23. {
  24. }
  25. void ListPage::DoDataExchange(CDataExchange* pDX)
  26. {
  27. CPropertyPage::DoDataExchange(pDX);
  28. //{{AFX_DATA_MAP(ListPage)
  29. DDX_Control(pDX, IDC_LIST, m_list);
  30. //}}AFX_DATA_MAP
  31. }
  32. BEGIN_MESSAGE_MAP(ListPage, CPropertyPage)
  33. //{{AFX_MSG_MAP(ListPage)
  34. ON_WM_CTLCOLOR()
  35. ON_NOTIFY(NM_DBLCLK, IDC_LIST, OnDblclkList)
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // ListPage message handlers
  40. BOOL ListPage::OnInitDialog() 
  41. {
  42. CPropertyPage::OnInitDialog();
  43. m_list.SetExtendedStyle(LVS_EX_GRIDLINES);
  44. m_brush.CreateSolidBrush(RGB(0,170,170));
  45. try
  46. {
  47.     CString  sDSN="ODBC;DRIVER=Microsoft Access Driver (*.mdb);DSN='';DBQ=telbook.mdb";
  48. m_database = new CDatabase;
  49. if(!m_database->Open(NULL,FALSE,FALSE,sDSN,FALSE))
  50. {      
  51. CDialog::EndDialog(0);
  52. return FALSE;
  53. }
  54. CString strSQL="select * from personlist";
  55. m_pSet = new CRecordset(m_database);
  56. m_pSet->Open(CRecordset::dynaset,strSQL);
  57. m_list.SetBkColor(RGB(0xFF,0xFF,0xFF));
  58. m_list.SetTextBkColor(RGB(0xFF,0xFF,0xFF));
  59. for(int i=0;i<12;i++)
  60. {
  61. m_list.InsertColumn(i,dbFields[i].label,LVCFMT_LEFT,-1,-1);
  62. m_list.SetColumnWidth(i,dbFields[i].len);
  63. }
  64. catch(CDBException* pEx)
  65. {
  66. pEx->ReportError();
  67. }
  68. return TRUE;  // return TRUE unless you set the focus to a control
  69.               // EXCEPTION: OCX Property Pages should return FALSE
  70. }
  71. HBRUSH ListPage::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) 
  72. {
  73. HBRUSH hbr = (HBRUSH)m_brush;
  74.    if(nCtlColor==CTLCOLOR_STATIC)
  75. {   pDC->SetBkMode(TRANSPARENT);
  76. return hbr;
  77. }
  78. if(nCtlColor==CTLCOLOR_EDIT)
  79. {  
  80. return NULL;
  81. }
  82. return hbr;
  83. }
  84. BOOL ListPage::OnSetActive() 
  85. {
  86. m_list.DeleteAllItems();
  87. AddDataIntoCtrl();
  88. return CPropertyPage::OnSetActive();
  89. }
  90. void ListPage::AddDataIntoCtrl()
  91. {
  92. CWaitCursor wc;
  93. CString temp;
  94. char *buf;
  95. int j=0;
  96. if(!m_pSet->Requery()) AfxMessageBox("can not requery");
  97. if(m_pSet->IsBOF() && m_pSet->IsEOF()) return;
  98. m_pSet->MoveFirst();
  99. while( !m_pSet->IsEOF() )
  100. {
  101. for(int i=0;i<MAX_LEN;i++)
  102. {
  103. m_pSet->GetFieldValue(dbFields[i].name,temp);
  104. buf=temp.GetBuffer(temp.GetLength());      
  105. strcpy(dbFields[i].m_name,buf);
  106. }
  107. m_list.InsertItem(j,(LPCTSTR)dbFields[0].m_name,0);
  108. for(i=1;i<MAX_LEN;i++)
  109. {
  110. m_list.SetItemText(j,i,dbFields[i].m_name);
  111. }
  112. j++;
  113. m_pSet->MoveNext();
  114. }
  115. }
  116. BOOL ListPage::DestroyWindow() 
  117. {
  118. if(m_pSet!=NULL)
  119. m_pSet->Close();
  120. m_database->Close();
  121. delete m_pSet;
  122. delete m_database;
  123. }
  124. return CPropertyPage::DestroyWindow();
  125. }
  126. void ListPage::OnDblclkList(NMHDR* pNMHDR, LRESULT* pResult) 
  127. {
  128. // TODO: Add your control notification handler code here
  129. CWnd *pWnd=this->GetParent();
  130. //SetActivePage(1);
  131. //PhoneSheetDlg *a=this->GetParentOwner();
  132. //a->EnableWindow(TRUE);
  133. //dlg.SetActivePage(dlg.GetPage(1));
  134. //theApp.Get
  135. *pResult = 0;
  136. }