home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / npp / gotodlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  838 b   |  43 lines

  1. // gotodlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "np.h"
  6. #include "gotodlg.h"
  7.  
  8. #ifdef _DEBUG
  9. #undef THIS_FILE
  10. static char BASED_CODE THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CGotoDlg dialog
  15.  
  16.  
  17. CGotoDlg::CGotoDlg(CWnd* pParent /*=NULL*/)
  18.     : CDialog(CGotoDlg::IDD, pParent)
  19. {
  20.     //{{AFX_DATA_INIT(CGotoDlg)
  21.     m_nLineNum = 1;
  22.     //}}AFX_DATA_INIT
  23. }
  24.  
  25.  
  26. void CGotoDlg::DoDataExchange(CDataExchange* pDX)
  27. {
  28.     CDialog::DoDataExchange(pDX);
  29.     //{{AFX_DATA_MAP(CGotoDlg)
  30.     DDX_Text(pDX, IDC_GOTO_LINE, m_nLineNum);
  31.     //}}AFX_DATA_MAP
  32.  
  33.     // Change above to this after bug fix
  34.     // DDX_Text(pDX, IDC_GOTO_LINE, m_nLineNum);
  35. }
  36.  
  37.  
  38. BEGIN_MESSAGE_MAP(CGotoDlg, CDialog)
  39.     //{{AFX_MSG_MAP(CGotoDlg)
  40.     //}}AFX_MSG_MAP
  41. END_MESSAGE_MAP()
  42.  
  43.