DLGSQL.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // DlgSQL.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "DaoView.h"
  14. #include "DlgSQL.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CDlgSQL dialog
  21. CDlgSQL::CDlgSQL(CWnd* pParent /*=NULL*/)
  22. : CDialog(CDlgSQL::IDD, pParent)
  23. {
  24. //{{AFX_DATA_INIT(CDlgSQL)
  25. m_strName = _T("");
  26. m_strSQL = _T("");
  27. //}}AFX_DATA_INIT
  28. m_bEditMode = FALSE;
  29. }
  30. void CDlgSQL::DoDataExchange(CDataExchange* pDX)
  31. {
  32. CDialog::DoDataExchange(pDX);
  33. //{{AFX_DATA_MAP(CDlgSQL)
  34. DDX_Text(pDX, IDC_EDITNAME, m_strName);
  35. DDV_MaxChars(pDX, m_strName, 45);
  36. DDX_Text(pDX, IDC_EDITSQL, m_strSQL);
  37. //}}AFX_DATA_MAP
  38. }
  39. BEGIN_MESSAGE_MAP(CDlgSQL, CDialog)
  40. //{{AFX_MSG_MAP(CDlgSQL)
  41. //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CDlgSQL message handlers
  45. BOOL CDlgSQL::OnInitDialog()
  46. {
  47. CDialog::OnInitDialog();
  48. if (m_bEditMode)
  49. {
  50. ((CEdit *) GetDlgItem(IDC_EDITNAME))->SetReadOnly();
  51. ((CEdit *) GetDlgItem(IDC_EDITSQL))->SetFocus();
  52. }
  53. return TRUE;  // return TRUE unless you set the focus to a control
  54.   // EXCEPTION: OCX Property Pages should return FALSE
  55. }