home *** CD-ROM | disk | FTP | other *** search
/ Looney Tunes Photo Fun / LooneyTunesPhotoFun.iso / Daosdk / DISK4 / DAOSDK.1 / securdlg.h < prev    next >
C/C++ Source or Header  |  1998-04-06  |  1KB  |  44 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.     // Generated message map functions
  32.     //{{AFX_MSG(CSecurityDlg)
  33.     virtual BOOL OnInitDialog();
  34.     afx_msg void OnPaint();
  35.     afx_msg HCURSOR OnQueryDragIcon();
  36.     virtual void OnBrowse();
  37.     afx_msg void OnOpenDB();
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40.         
  41.     // Holds the file name of the current SystemDB
  42.     CString m_strSystemDB;        
  43. };
  44.