home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / BATCH.PAK / DESTDIRD.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.4 KB  |  55 lines

  1. /**************************************************************************
  2.  *
  3.  *  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4.  *  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5.  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6.  *  PURPOSE.
  7.  *
  8.  *  Copyright (c) 1994 - 1995    Microsoft Corporation.    All Rights Reserved.
  9.  *
  10.  **************************************************************************/
  11. // destdird.cpp : implementation file
  12. //
  13. #ifndef UNICODE
  14. #define OLE2ANSI
  15. #endif
  16.  
  17. #include "stdafx.h"
  18. #include "batch.h"
  19. #include "destdird.h"
  20.  
  21. #ifdef _DEBUG
  22. #undef THIS_FILE
  23. static char BASED_CODE THIS_FILE[] = __FILE__;
  24. #endif
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CDestDirDlg dialog
  28.  
  29.  
  30. CDestDirDlg::CDestDirDlg(CWnd* pParent /*=NULL*/)
  31.     : CDialog(CDestDirDlg::IDD, pParent)
  32. {
  33.     //{{AFX_DATA_INIT(CDestDirDlg)
  34.     m_DestDir = _T("");
  35.     //}}AFX_DATA_INIT
  36. }
  37.  
  38. void CDestDirDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40.     CDialog::DoDataExchange(pDX);
  41.     //{{AFX_DATA_MAP(CDestDirDlg)
  42.     DDX_Text(pDX, IDC_EDIT1, m_DestDir);
  43.     //}}AFX_DATA_MAP
  44. }
  45.  
  46. BEGIN_MESSAGE_MAP(CDestDirDlg, CDialog)
  47.     //{{AFX_MSG_MAP(CDestDirDlg)
  48.         // NOTE: the ClassWizard will add message map macros here
  49.     //}}AFX_MSG_MAP
  50. END_MESSAGE_MAP()
  51.  
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CDestDirDlg message handlers
  55.