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

SQL Server

开发平台:

Visual C++

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