home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / sdk / mapi / win16 / dev / propvu / problem.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-11  |  1.2 KB  |  83 lines

  1. /*********************************************************************/
  2. /*
  3.  -  problem.h
  4.  -  Copyright (C) 1995 Microsoft Corporation
  5.  -
  6.  *  Purpose:
  7.  *      Defines id's, function prototypes, classes for Problems Dialog class
  8.  *
  9.  */
  10. /*********************************************************************/
  11.  
  12. #ifndef __problem_h_
  13. #define __problem_h_
  14.  
  15.  
  16. #include "propvu.h"
  17.  
  18. /*********************************************************************/
  19. /*
  20.  -  CProblemDlg Class
  21.  -
  22.  *  Purpose:
  23.  *      Defines the controls for the Get Property Dialog
  24.  *
  25.  */
  26. /*********************************************************************/
  27.  
  28. class CProblemDlg : public CModalDialog
  29. {
  30. public:
  31.  
  32.     LPSPropProblemArray     m_lpProblems;
  33.     CString                 m_Operation;        
  34.  
  35.     CProblemDlg(CWnd  *pParentWnd)
  36.         : CModalDialog(PROBLEMS, pParentWnd)
  37.     {
  38.         m_lpProblems       = NULL;
  39.     }
  40.  
  41.     ~CProblemDlg(); 
  42.  
  43.     BOOL OnInitDialog();
  44.  
  45.     void DisplayProblems();
  46.  
  47.     void OnDumpProblemsToFile();
  48.     
  49.     DECLARE_MESSAGE_MAP();
  50.  
  51. };
  52.                          
  53.  
  54. #endif
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.