⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 error lookupdlg.cpp

📁 NUCLEUS下错误代码查询!
💻 CPP
📖 第 1 页 / 共 2 页
字号:
// Error LookUpDlg.cpp : implementation file
//

#include "stdafx.h"
#include "Error LookUp.h"
#include "Error LookUpDlg.h"
#include "ErrorCode.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About
CString swap(CString tmpstring);
#define lower(x) (x >='a' && x <= 'f') ? (x-32) : x
#define upper(x) (x > 'A' && x < 'Z') ? x : (x - 32)

class CAboutDlg : public CDialog
{
public:
	CAboutDlg();

// Dialog Data
	//{{AFX_DATA(CAboutDlg)
	enum { IDD = IDD_ABOUTBOX };
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAboutDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	//{{AFX_MSG(CAboutDlg)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
	//{{AFX_DATA_INIT(CAboutDlg)
	//}}AFX_DATA_INIT
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAboutDlg)
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
	//{{AFX_MSG_MAP(CAboutDlg)
		// No message handlers
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CErrorLookUpDlg dialog

CErrorLookUpDlg::CErrorLookUpDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CErrorLookUpDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CErrorLookUpDlg)
	m_editValue = _T("");
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CErrorLookUpDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CErrorLookUpDlg)
	DDX_Control(pDX, IDC_MSG, m_MSG);
	DDX_Text(pDX, IDC_Value, m_editValue);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CErrorLookUpDlg, CDialog)
	//{{AFX_MSG_MAP(CErrorLookUpDlg)
	ON_WM_SYSCOMMAND()
	ON_WM_PAINT()
	ON_WM_QUERYDRAGICON()
	ON_EN_UPDATE(IDC_Value, OnUpdateValue)
	ON_EN_CHANGE(IDC_Value, OnChangeValue)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CErrorLookUpDlg message handlers

BOOL CErrorLookUpDlg::OnInitDialog()
{
	CDialog::OnInitDialog();

	// Add "About..." menu item to system menu.

	// IDM_ABOUTBOX must be in the system command range.
	ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
	ASSERT(IDM_ABOUTBOX < 0xF000);

	CMenu* pSysMenu = GetSystemMenu(FALSE);
	if (pSysMenu != NULL)
	{
		CString strAboutMenu;
		strAboutMenu.LoadString(IDS_ABOUTBOX);
		if (!strAboutMenu.IsEmpty())
		{
			pSysMenu->AppendMenu(MF_SEPARATOR);
			pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
		}
	}

	// Set the icon for this dialog.  The framework does this automatically
	//  when the application's main window is not a dialog
	SetIcon(m_hIcon, TRUE);			// Set big icon
	SetIcon(m_hIcon, FALSE);		// Set small icon
	
	// TODO: Add extra initialization here
	
	return TRUE;  // return TRUE  unless you set the focus to a control
}

void CErrorLookUpDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
	if ((nID & 0xFFF0) == IDM_ABOUTBOX)
	{
		CAboutDlg dlgAbout;
		dlgAbout.DoModal();
	}
	else
	{
		CDialog::OnSysCommand(nID, lParam);
	}
}

// If you add a minimize button to your dialog, you will need the code below
//  to draw the icon.  For MFC applications using the document/view model,
//  this is automatically done for you by the framework.

void CErrorLookUpDlg::OnPaint() 
{
	if (IsIconic())
	{
		CPaintDC dc(this); // device context for painting

		SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

		// Center icon in client rectangle
		int cxIcon = GetSystemMetrics(SM_CXICON);
		int cyIcon = GetSystemMetrics(SM_CYICON);
		CRect rect;
		GetClientRect(&rect);
		int x = (rect.Width() - cxIcon + 1) / 2;
		int y = (rect.Height() - cyIcon + 1) / 2;

		// Draw the icon
		dc.DrawIcon(x, y, m_hIcon);
	}
	else
	{
		CDialog::OnPaint();
	}
}

// The system calls this to obtain the cursor to display while the user drags
//  the minimized window.
HCURSOR CErrorLookUpDlg::OnQueryDragIcon()
{
	return (HCURSOR) m_hIcon;
}


void CErrorLookUpDlg::OnUpdateValue() 
{
	// TODO: If this is a RICHEDIT control, the control will not
	// send this notification unless you override the CDialog::OnInitDialog()
	// function to send the EM_SETEVENTMASK message to the control
	// with the ENM_UPDATE flag ORed into the lParam mask.
	
	// TODO: Add your control notification handler code here

//Added  By   范衍成    2004-04-05
	int i=0;
	CString m_Value;
	UpdateData(TRUE);
	m_Value = swap(m_editValue);

	if((m_Value==ErrorCode[0])||(m_Value==HexValue[0]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[0]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[1])||(m_Value == HexValue[1]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[1]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[2])||(m_Value == HexValue[2]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[2]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[3])||(m_Value == HexValue[3]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[3]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[4])||(m_Value == HexValue[4]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[4]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[5])||(m_Value == HexValue[5]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[5]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[6])||(m_Value == HexValue[6]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[6]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[7])||(m_Value == HexValue[7]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[7]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[8])||(m_Value == HexValue[8]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[8]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[9])||(m_Value == HexValue[9]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[9]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[10])||(m_Value == HexValue[10]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[10]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[11])||(m_Value == HexValue[11]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[11]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[12])||(m_Value == HexValue[12]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[12]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[13])||(m_Value == HexValue[13]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[13]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[14])||(m_Value == HexValue[14]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[14]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[15])||(m_Value == HexValue[15]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[15]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[16])||(m_Value == HexValue[16]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[16]);
		UpdateData(FALSE);	
	}
	else if((m_Value == ErrorCode[17])||(m_Value == HexValue[17]))
	{
		((CEdit *)GetDlgItem(IDC_MSG))->SetWindowText(ErrorMsg[17]);
		UpdateData(FALSE);	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -