Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.3 KiB

  1. // AspDbgPg.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CAppAspDebugPage dialog
  5. class CAppAspDebugPage : public CPropertyPage
  6. {
  7. DECLARE_DYNCREATE(CAppAspDebugPage)
  8. // Construction
  9. public:
  10. CAppAspDebugPage();
  11. ~CAppAspDebugPage();
  12. // the target metabase path
  13. CString m_szMeta;
  14. CString m_szServer;
  15. IMSAdminBase* m_pMB;
  16. // blow away the parameters
  17. void BlowAwayParameters();
  18. // Dialog Data
  19. //{{AFX_DATA(CAppAspDebugPage)
  20. enum { IDD = IDD_APP_ASPDEBUG };
  21. CEdit m_cedit_error;
  22. CString m_sz_error;
  23. BOOL m_bool_client_debug;
  24. BOOL m_bool_server_debug;
  25. int m_int_SendError;
  26. //}}AFX_DATA
  27. // Overrides
  28. // ClassWizard generate virtual function overrides
  29. //{{AFX_VIRTUAL(CAppAspDebugPage)
  30. public:
  31. virtual BOOL OnApply();
  32. virtual BOOL OnSetActive();
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. // Generated message map functions
  39. //{{AFX_MSG(CAppAspDebugPage)
  40. afx_msg void OnRdoSendDefError();
  41. afx_msg void OnRdoSendDetailedError();
  42. afx_msg void OnChangeDefaultError();
  43. afx_msg void OnChkClientDebug();
  44. afx_msg void OnChkServerDebug();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. void DoHelp();
  48. // utilities
  49. void Init();
  50. void EnableItems();
  51. BOOL m_fInitialized;
  52. };