toolsqlresults.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. // ToolSqlResults.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MySqlManager.h"
  5. #include "ToolSqlResults.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. CToolSqlResults::CToolSqlResults(CWnd* pParent /*=NULL*/)
  13. : CDialog(CToolSqlResults::IDD, pParent)
  14. {
  15. //{{AFX_DATA_INIT(CToolSqlResults)
  16. m_edit = _T("");
  17. //}}AFX_DATA_INIT
  18. }
  19. /////////////////////////////////////////////////////////////////////////////
  20. void CToolSqlResults::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CToolSqlResults)
  24. DDX_Control(pDX, IDC_EDIT, m_ctl_edit);
  25. DDX_Text(pDX, IDC_EDIT, m_edit);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CToolSqlResults, CDialog)
  29. //{{AFX_MSG_MAP(CToolSqlResults)
  30. ON_WM_SIZE()
  31. ON_WM_CLOSE()
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. void CToolSqlResults::SetFont(CFont* pFont, BOOL bRedraw)
  36. {
  37. m_ctl_edit.SetFont(pFont,bRedraw);
  38. m_ctl_edit.Invalidate();
  39. m_ctl_edit.UpdateWindow();
  40. }
  41. /////////////////////////////////////////////////////////////////////////////
  42. void CToolSqlResults::OnSize(UINT nType, int cx, int cy)
  43. {
  44. CDialog::OnSize(nType, cx, cy);
  45.    if (IsWindow(m_ctl_edit.GetSafeHwnd()))
  46.    m_ctl_edit.SetWindowPos(NULL,20,24,cx-40,cy-48,SWP_NOZORDER | SWP_NOMOVE);
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. void CToolSqlResults::OnCancel()
  50. {
  51. }
  52. /////////////////////////////////////////////////////////////////////////////
  53. void CToolSqlResults::OnClose()
  54. {
  55. }