www.pudn.com > 20040716141459_combotree.rar > ComboEdit.cpp


/* Standard Disclaimer:  
Copyright (C) 2000  Dennis Howard 
This file is free software; you can redistribute it and/or 
modify it without any conditions. There is no warranty, 
implied or expressed, as to validity or fitness for a particular purpose. 
*/ 
 
 
// ComboEdit.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "ComboEdit.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CComboEdit 
 
CComboEdit::CComboEdit() 
{ 
} 
 
CComboEdit::~CComboEdit() 
{ 
} 
 
 
BEGIN_MESSAGE_MAP(CComboEdit, CEdit) 
	//{{AFX_MSG_MAP(CComboEdit) 
	ON_WM_CHAR() 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CComboEdit message handlers 
 
void CComboEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)  
{ 
	//Customize this to do lookups, etc. 
	return;	//make control read only 
}