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 / registerserver.cpp < prev    next >
C/C++ Source or Header  |  1999-10-12  |  1KB  |  52 lines

  1. // RegisterServer.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "mysqlmanager.h"
  6. #include "RegisterServer.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. // CRegisterServer dialog
  16.  
  17.  
  18. CRegisterServer::CRegisterServer(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CRegisterServer::IDD, pParent)
  20.     , m_strServer("servername")
  21.     , m_strHost("localhost")
  22.     , m_strUser("root")
  23.     , m_strPassword("")
  24. {
  25.     //{{AFX_DATA_INIT(CRegisterServer)
  26.     m_strPort = _T("3306");
  27.     //}}AFX_DATA_INIT
  28. }
  29.  
  30.  
  31. void CRegisterServer::DoDataExchange(CDataExchange* pDX)
  32. {
  33.     CDialog::DoDataExchange(pDX);
  34.     //{{AFX_DATA_MAP(CRegisterServer)
  35.     DDX_CBString(pDX, ID_SERVER_CB, m_strServer);
  36.     DDX_CBString(pDX, ID_HOST_CB, m_strHost);
  37.     DDX_Text(pDX, ID_USER, m_strUser);
  38.     DDX_Text(pDX, ID_PASSWORD, m_strPassword);
  39.     DDX_CBString(pDX, ID_PORT_CB, m_strPort);
  40.     //}}AFX_DATA_MAP
  41. }
  42.  
  43.  
  44. BEGIN_MESSAGE_MAP(CRegisterServer, CDialog)
  45.     //{{AFX_MSG_MAP(CRegisterServer)
  46.         // NOTE: the ClassWizard will add message map macros here
  47.     //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CRegisterServer message handlers
  52.