home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / MS_DAO.SDK / DISK4 / DAOSDK.1 / securdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-11  |  1.1 KB  |  47 lines

  1. // SecurityDlg.h : header file
  2. //
  3. #include <dbdao.h> //DAO header file
  4.  
  5.  
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CSecurityDlg dialog
  8.  
  9. class CSecurityDlg : public CDialog
  10. {
  11. // Construction
  12. public:
  13.     CSecurityDlg(CWnd* pParent = NULL);    // standard constructor
  14.     void GetSystemDB();
  15. // Dialog Data
  16.     //{{AFX_DATA(CSecurityDlg)
  17.     enum { IDD = IDD_SECURITY_DIALOG };
  18.         // NOTE: the ClassWizard will add data members here
  19.     //}}AFX_DATA
  20.  
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CSecurityDlg)
  23.     protected:
  24.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. protected:
  29.     HICON m_hIcon;
  30.  
  31.     BOOL        m_bOpened;
  32.  
  33.     // Generated message map functions
  34.     //{{AFX_MSG(CSecurityDlg)
  35.     virtual BOOL OnInitDialog();
  36.     afx_msg void OnPaint();
  37.     afx_msg HCURSOR OnQueryDragIcon();
  38.     virtual void OnBrowse();
  39.     afx_msg void OnOpenDB();
  40.     afx_msg void OnBrowseDB();
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43.         
  44.     // Holds the file name of the current SystemDB
  45.     CString m_strSystemDB;        
  46. };
  47.