12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #if !defined(AFX_WORKERDLG_H__B9CB820E_682A_4973_A271_DD909C9BE2A7__INCLUDED_)
- #define AFX_WORKERDLG_H__B9CB820E_682A_4973_A271_DD909C9BE2A7__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // WorkerDlg.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // WorkerDlg dialog
- class WorkerDlg : public CDialog
- {
- // Construction
- public:
- WorkerDlg(CWnd* pParent = NULL); // standard constructor
- int m_linepos;
- // Dialog Data
- //{{AFX_DATA(WorkerDlg)
- enum {
- IDD = IDD_DLGWorker
- };
- CString m_phone;
- CString m_name;
- CString m_sex;
- CString m_bm;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(WorkerDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(WorkerDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- virtual void OnOK();
- virtual void OnCancel();
- //}}AFX_MSG
- afx_msg LRESULT OnCloseWin(WPARAM wParam, LPARAM lParam);
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_WORKERDLG_H__B9CB820E_682A_4973_A271_DD909C9BE2A7__INCLUDED_)
|