home *** CD-ROM | disk | FTP | other *** search
/ ActiveX Programming Unleashed CD / AXU.iso / componen / interact / demo / data.2 / samples / ansic / INTERACT / CURRENTE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-23  |  2.0 KB  |  66 lines

  1.  
  2. //lRegen_FileHeading
  3. //lRegen_FileHeading
  4.  
  5.      /********************************************************************
  6.       *
  7.       *   Source File:  currente.h                                        
  8.       *   Author:                                                         
  9.       *   Module:       Dialog Class for IDOIFACE                         
  10.       *   Program Desc:                                                                                 
  11.       *   Date:         Tue Jan 23 17:38:46 1996                          
  12.       *   Language:     OWL C++ 2.5
  13.       *
  14.       ********************************************************************/
  15.  
  16. #if !defined(__CURRENTENTITY__H)
  17. #define __CURRENTENTITY__H
  18.  
  19. //Regen_ClassHeader
  20. //Regen_ClassHeader
  21. // Declare PVData class for data exchanges
  22. class PVcurrententityData : public PVData
  23. {
  24. public:
  25.    //lRegen_currententity_Data1
  26.    //lRegen_currententity_Data1
  27.    long         x;
  28.    PVcurrententityData();
  29.    ~PVcurrententityData();
  30.    //Regen_currententity_Data2
  31.    //Regen_currententity_Data2
  32.  
  33. };
  34. // Declare PVcurrententityDlg, a PVDialog descendant
  35. class PVcurrententityDlg : public PVDialog
  36. {
  37. public:
  38.    //lRegen_ClassVariables
  39.    //lRegen_ClassVariables
  40.    PVcurrententityData * DlgData() { return (PVcurrententityData *)pPVData; }
  41.    //Regen_ClassVarEnd
  42.    //Regen_ClassVarEnd
  43.    //lRegen_ClassMemberFunctions
  44.    //lRegen_ClassMemberFunctions
  45.    TComboBox* CBoxIDC_ENAME;
  46.    TComboBox* CBoxIDC_EID;
  47.    PVcurrententityDlg(TWindow *parent, TResId resId, TModule *module = 0);
  48.    virtual ~PVcurrententityDlg();
  49.    void SetupWindow();
  50.    void EvMDIActivate(HWND hWndActivated, HWND hWndDeactivated);
  51.    void Evcbn_selchangeidc_ename();
  52.    void Evcbn_selchangeidc_eid();
  53.    void CmOk();
  54.    void CmCancel();
  55.  
  56. protected:
  57.    //Regen_currententity_Class
  58.    //Regen_currententity_Class
  59.  
  60.    DECLARE_RESPONSE_TABLE(PVcurrententityDlg);
  61. };
  62.  
  63. //Regen_ClassCustom
  64. //Regen_ClassCustom
  65. #endif //__CURRENTENTITY__H
  66.