home *** CD-ROM | disk | FTP | other *** search
/ Sams Cobol 24 Hours / Sams_Cobol_24_Hours.iso / Cobol32 / CRW / 32BIT / DISK6 / TABLELOG.H_ / TABLELOG.H
C/C++ Source or Header  |  1995-08-29  |  1KB  |  55 lines

  1. // tablelog.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CTableLogon dialog
  6.  
  7. class CTableLogon : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CTableLogon(CWnd* pParent = NULL);   // standard constructor
  12.  
  13. // My Own Function
  14.     void UpdateTableInfo(int nTable, int updatebox);
  15.  
  16. // Dialog Data
  17.     //{{AFX_DATA(CTableLogon)
  18.     enum { IDD = IDD_TABLELOGON };
  19.     CButton    m_SetLogon;
  20.     int        m_Propagate;
  21.     CString    m_TDatabaseName;
  22.     CString    m_TUserID;
  23.     CString    m_TPassword;
  24.     CString    m_TServerName;
  25.     //}}AFX_DATA
  26.  
  27.     // CRPE class object
  28.     CRPEPlusApp *app;
  29.     // combo box
  30.     CComboBox *pCombo;
  31.  
  32. // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(CTableLogon)
  35.     public:
  36.     virtual int DoModal();
  37.     protected:
  38.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. protected:
  43.  
  44.     // Generated message map functions
  45.     //{{AFX_MSG(CTableLogon)
  46.     virtual BOOL OnInitDialog();
  47.     afx_msg void OnDropdownTables();
  48.     afx_msg void OnSelchangeTables();
  49.     afx_msg void OnSetTableLogon();
  50.     afx_msg void OnTestLogon();
  51.     //}}AFX_MSG
  52.     DECLARE_MESSAGE_MAP()
  53.  
  54. };
  55.