home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / metkit / setup.exe / EXAMPLES / CATSEND / MYDLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-08  |  959 b   |  39 lines

  1. //    Copyright (C) 1996, 1997 Meta Four Software.  All rights reserved.
  2. //
  3. //    Catalog send dialog sample code
  4. //
  5. //! rev="$Id: mydlg.h,v 1.3 1997/05/27 00:06:31 jcw Rel $"
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8.  
  9. class CMyDlg : public CDialog
  10. {
  11. // Construction
  12. public:
  13.     CMyDlg(CWnd* pParent = NULL);    // standard constructor
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CMyDlg)
  17.     enum { IDD = IDD_CATSEND_DIALOG };
  18.     CEdit    m_address;
  19.     CEdit    m_port;
  20.     //}}AFX_DATA
  21.  
  22.     // ClassWizard generated virtual function overrides
  23.     //{{AFX_VIRTUAL(CMyDlg)
  24.     protected:
  25.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26.     //}}AFX_VIRTUAL
  27.  
  28. // Implementation
  29. protected:
  30.     // Generated message map functions
  31.     //{{AFX_MSG(CMyDlg)
  32.     virtual BOOL OnInitDialog();
  33.     afx_msg void OnSendBtn();
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39.