home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / bar_vbx / maindlg.h < prev    next >
C/C++ Source or Header  |  1993-11-15  |  839b  |  35 lines

  1. // maindlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMainDlg dialog
  6.  
  7. class CMainDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CMainDlg(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CMainDlg)
  15.     enum { IDD = IDD_DIALOG1 };
  16.     CVBControl*    m_BarCode;
  17.     CString    m_Edit;
  18.     //}}AFX_DATA
  19.  
  20. // Implementation
  21. protected:
  22.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  23.  
  24.     // Generated message map functions
  25.     //{{AFX_MSG(CMainDlg)
  26.     virtual BOOL OnInitDialog();
  27.     afx_msg void OnDestroy();
  28.     afx_msg void OnChangeEdit1();
  29.     afx_msg void OnDblclickBarcode1(UINT, int, CWnd*, LPVOID);
  30.     afx_msg void OnChangedBarcode1(UINT, int, CWnd*, LPVOID);
  31.     afx_msg void OnClickedPrint();
  32.     //}}AFX_MSG
  33.     DECLARE_MESSAGE_MAP()
  34. };
  35.