teledlg.h

来自「ado操作数据库。oracle,sql2000只需更换连接字符串即可。 另外说明」· C头文件 代码 · 共 95 行

H
95
字号
// TeleDlg.h : header file
//

#if !defined(AFX_TELEDLG_H__15243C3C_520B_4C28_AF2D_923D27E6FFFB__INCLUDED_)
#define AFX_TELEDLG_H__15243C3C_520B_4C28_AF2D_923D27E6FFFB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000



/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About


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()
};




/////////////////////////////////////////////////////////////////////////////
// CTeleDlg dialog

class CTeleDlg : public CDialog
{
// Construction
public:
	CTeleDlg(CWnd* pParent = NULL);	// standard constructor
	typedef struct telephone
	{
		CString name;
		CString tele;
		CString remarks;
	} tele;
	tele m_tele;
	CListCtrl *m_pListCtrl;
	

// Dialog Data
	//{{AFX_DATA(CTeleDlg)
	enum { IDD = IDD_TELE_ADD };
	CString	m_strName;
	CString	m_strTele;
	CString	m_strRemarks;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CTeleDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnButtonAdd();
	afx_msg void OnCancelMode();
	afx_msg void OnButtonContinue();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_TELEDLG_H__15243C3C_520B_4C28_AF2D_923D27E6FFFB__INCLUDED_)

⌨️ 快捷键说明

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