home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n04 / multilin.exe / CURRFORM.CPP next >
C/C++ Source or Header  |  1995-04-01  |  2KB  |  67 lines

  1. // currform.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "global.h"
  6. #include "currform.h"
  7.  
  8. #ifdef _DEBUG
  9. #undef THIS_FILE
  10. static char BASED_CODE THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CCurrFormat dialog
  15.  
  16.  
  17. CCurrFormat::CCurrFormat(CWnd* pParent /*=NULL*/)
  18.     : CDialog(CCurrFormat::IDD, pParent)
  19. {
  20.     //{{AFX_DATA_INIT(CCurrFormat)
  21.         // NOTE: the ClassWizard will add member initialization here
  22.     //}}AFX_DATA_INIT
  23. }
  24.  
  25.  
  26. void CCurrFormat::DoDataExchange(CDataExchange* pDX)
  27. {
  28.     CDialog::DoDataExchange(pDX);
  29.     //{{AFX_DATA_MAP(CCurrFormat)
  30.         // NOTE: the ClassWizard will add DDX and DDV calls here
  31.     //}}AFX_DATA_MAP
  32. }
  33.  
  34.  
  35. BEGIN_MESSAGE_MAP(CCurrFormat, CDialog)
  36.     //{{AFX_MSG_MAP(CCurrFormat)
  37.     ON_EN_CHANGE(IDC_CUSTOM, OnChangeCustom)
  38.     ON_LBN_DBLCLK(IDC_CURRFORMATS, OnDblclkCurrformats)
  39.     //}}AFX_MSG_MAP
  40. END_MESSAGE_MAP()
  41.  
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CCurrFormat message handlers
  45.  
  46. BOOL CCurrFormat::OnInitDialog() 
  47. {
  48.     CDialog::OnInitDialog();
  49.     
  50.     // TODO: Add extra initialization here
  51.     
  52.     return TRUE;  // return TRUE unless you set the focus to a control
  53.                   // EXCEPTION: OCX Property Pages should return FALSE
  54. }
  55.  
  56. void CCurrFormat::OnChangeCustom() 
  57. {
  58.     // TODO: Add your control notification handler code here
  59.     
  60. }
  61.  
  62. void CCurrFormat::OnDblclkCurrformats() 
  63. {
  64.     // TODO: Add your control notification handler code here
  65.     
  66. }
  67.