home *** CD-ROM | disk | FTP | other *** search
- // SecurityDlg.h : header file
- //
- #include <dbdao.h> //DAO header file
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CSecurityDlg dialog
-
- class CSecurityDlg : public CDialog
- {
- // Construction
- public:
- CSecurityDlg(CWnd* pParent = NULL); // standard constructor
- void GetSystemDB();
- // Dialog Data
- //{{AFX_DATA(CSecurityDlg)
- enum { IDD = IDD_SECURITY_DIALOG };
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
-
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CSecurityDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
- HICON m_hIcon;
-
- BOOL m_bOpened;
-
- // Generated message map functions
- //{{AFX_MSG(CSecurityDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnPaint();
- afx_msg HCURSOR OnQueryDragIcon();
- virtual void OnBrowse();
- afx_msg void OnOpenDB();
- afx_msg void OnBrowseDB();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
- // Holds the file name of the current SystemDB
- CString m_strSystemDB;
- };
-