home *** CD-ROM | disk | FTP | other *** search
- // ConfigDialog.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "MFCEditor.h"
- #include "ConfigDialog.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CConfigDialog dialog
-
-
- CConfigDialog::CConfigDialog(CWnd* pParent /*=NULL*/)
- : CDialog(CConfigDialog::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CConfigDialog)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
-
-
- void CConfigDialog::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CConfigDialog)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CConfigDialog, CDialog)
- //{{AFX_MSG_MAP(CConfigDialog)
- ON_BN_CLICKED(IDC_BOTON_PRUEBA, OnBotonPrueba)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CConfigDialog message handlers
-
- void CConfigDialog::OnBotonPrueba()
- {
- // TODO: Add your control notification handler code here
-
- MessageBeep((UINT)-1);
- }
-
-
- void CConfigDialog::OnOK()
- {
- // TODO: Add extra validation here
-
-
- MessageBeep((UINT)-1);
- CDialog::OnOK();
- }
-