searchdlg1.h

来自「我自己写的一个通讯录的程序,用ODBC来连接数据库. 可以查找,添加,删除,和修」· C头文件 代码 · 共 54 行

H
54
字号
#if !defined(AFX_SEARCHDLG1_H__FB85396B_DB7C_464D_B049_20DA110EF30D__INCLUDED_)
#define AFX_SEARCHDLG1_H__FB85396B_DB7C_464D_B049_20DA110EF30D__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// SearchDlg1.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// SearchDlg dialog

class SearchDlg : public CDialog
{
// Construction
public:
	bool m_bExact;
	SearchDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(SearchDlg)
	enum { IDD = IDD_SEARCH_DIALOG };
	CEdit	m_ctrl_key;
	CComboBox	m_search_ctrl_field;
	CString	m_keyword;
	CString	m_search_field;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(SearchDlg)
	afx_msg void OnRadio1();
	afx_msg void OnRadio2();
	virtual void OnOK();
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_SEARCHDLG1_H__FB85396B_DB7C_464D_B049_20DA110EF30D__INCLUDED_)

⌨️ 快捷键说明

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