query.cpp
上传用户:hzzhuce
上传日期:2013-04-01
资源大小:1289k
文件大小:2k
源码类别:

SQL Server

开发平台:

Visual C++

  1. // query.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "student.h"
  5. #include "query.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Cquery dialog
  13. Cquery::Cquery(CWnd* pParent /*=NULL*/)
  14. : CDialog(Cquery::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(Cquery)
  17. m_find = _T("");
  18. //}}AFX_DATA_INIT
  19. }
  20. void Cquery::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(Cquery)
  24. DDX_Control(pDX, IDC_COMBO3, m_select);
  25. DDX_Control(pDX, IDC_COMBO2, m_query);
  26. DDX_Text(pDX, IDC_EDIT1, m_find);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(Cquery, CDialog)
  30. //{{AFX_MSG_MAP(Cquery)
  31. ON_WM_CANCELMODE()
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // Cquery message handlers
  36. void Cquery::OnOK() 
  37. {
  38. // TODO: Add extra validation here
  39. UpdateData(TRUE);
  40.     m_query.GetLBText(m_query.GetCurSel(),m_Getstring1);
  41. m_select.GetLBText(m_select.GetCurSel(),m_Getstring2);
  42. CDialog::OnOK();
  43. }
  44. BOOL Cquery::OnInitDialog() 
  45. {
  46. CDialog::OnInitDialog();
  47. // TODO: Add extra initialization here
  48. m_query.SetCurSel(1);
  49. m_select.SetCurSel(2);
  50. return TRUE;  // return TRUE unless you set the focus to a control
  51.               // EXCEPTION: OCX Property Pages should return FALSE
  52. }
  53. void Cquery::OnCancelMode() 
  54. {
  55. CDialog::OnCancelMode();
  56. // TODO: Add your message handler code here
  57. }