home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysqlmanager / toolsqlresults.cpp < prev    next >
C/C++ Source or Header  |  1999-10-12  |  2KB  |  74 lines

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