@charset "UTF-8";

// editdlg.h : header file
// //////////////////////////////////////////////////////////////////////// /// // CEditDialog dialog
class CEditDialog : public CDialog {
  //Constructionpublic:CEditDialog(CWnd* pParent = NULL);
  //DialogData//AFX_DATACEditDialogenumIDD:IDD_EDITDIALOG;
}  
}

  
}

AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
// {
  {AFX_VIRTUALCEditDialogprotected:virtual void DoDataExchange(CDataExchange* pDX);
}  
}

AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
// {
}  
}

  
}

;
// editdlg.cpp : implementation file
// #include stdafx.h
#include mdi.h
#include editdlg.h
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
////////////////////////////////////////////////////////////////////// // CEditDialog dialog
CEditDialog::CEditDialog(CWnd* pParent /*=NULL*/)
: CDialog(CEditDialog::IDD,pParent) {
  //AFX_DATA_INITCEditDialog//NOTE:The ClassWizard will add member initialization here. //;
}  
}

  
}

void CEditDialog::DoDataExchange(CDataExchange* pDX) {
  CDialog::DoDataExchange(pDX);
  //AFX_DATA_MAPCEditDialog//NOTE:The ClassWizard will add DDX and DDV calls here. //;
}  
}

  
}

BEGIN_MESSAGE_MAP(CEditDialog,CDialog)
// {
}  
}

AFX_MSG_MAP
END_MESSAGE_MAP()
////////////////////////////////////////////////////////////////////// // CEditDialog message handlers
HBRUSH CEditDialog::OnCtlColor(CDC* pDC,CWnd* pWnd,UINT nCtlColor) {
  switchnCtlColorcaseCTLCOLOR_EDIT:case CTLCOLOR_MSGBOX: // Set color to green on black and return the background brush. pDC->SetTextColor(RGB(0,255,0));
  default:return CDialog::OnCtlColor(pDC,pWnd,nCtlColor);
}  
}

void CEditDialog::OnDestroy() {
  CDialog::OnDestroy();
}