home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / queryhelpdlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-16  |  1.6 KB  |  54 lines

  1. /******************************************************************/
  2. /*                                                                */
  3. /*                      TurboCAD for Windows                      */
  4. /*                   Copyright (c) 1993 - 2001                    */
  5. /*             International Microcomputer Software, Inc.         */
  6. /*                            (IMSI)                              */
  7. /*                      All rights reserved.                      */
  8. /*                                                                */
  9. /******************************************************************/
  10.  
  11. // QueryHelpDlg.cpp : implementation file
  12. //
  13.  
  14. #include "stdafx.h"
  15. #include "ltsample.h"
  16. #include "QueryHelpDlg.h"
  17.  
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CQueryHelpDlg dialog
  26.  
  27.  
  28. CQueryHelpDlg::CQueryHelpDlg(CWnd* pParent /*=NULL*/)
  29.     : CDialog(CQueryHelpDlg::IDD, pParent)
  30. {
  31.     //{{AFX_DATA_INIT(CQueryHelpDlg)
  32.     //}}AFX_DATA_INIT
  33.     m_cstrHelpString.LoadString(IDS_QUERYHELPSTRING);
  34. }
  35.  
  36.  
  37. void CQueryHelpDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39.     CDialog::DoDataExchange(pDX);
  40.     //{{AFX_DATA_MAP(CQueryHelpDlg)
  41.     DDX_Text(pDX, IDC_HELPEDIT, m_cstrHelpString);
  42.     //}}AFX_DATA_MAP
  43. }
  44.  
  45.  
  46. BEGIN_MESSAGE_MAP(CQueryHelpDlg, CDialog)
  47.     //{{AFX_MSG_MAP(CQueryHelpDlg)
  48.         // NOTE: the ClassWizard will add message map macros here
  49.     //}}AFX_MSG_MAP
  50. END_MESSAGE_MAP()
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CQueryHelpDlg message handlers
  54.