home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Troubleshooting Netware Systems
/
CSTRIAL0196.BIN
/
attach
/
msj
/
v10n04
/
multilin.exe
/
CURRFORM.CPP
next >
Wrap
C/C++ Source or Header
|
1995-04-01
|
2KB
|
67 lines
// currform.cpp : implementation file
//
#include "stdafx.h"
#include "global.h"
#include "currform.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCurrFormat dialog
CCurrFormat::CCurrFormat(CWnd* pParent /*=NULL*/)
: CDialog(CCurrFormat::IDD, pParent)
{
//{{AFX_DATA_INIT(CCurrFormat)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CCurrFormat::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CCurrFormat)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CCurrFormat, CDialog)
//{{AFX_MSG_MAP(CCurrFormat)
ON_EN_CHANGE(IDC_CUSTOM, OnChangeCustom)
ON_LBN_DBLCLK(IDC_CURRFORMATS, OnDblclkCurrformats)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCurrFormat message handlers
BOOL CCurrFormat::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CCurrFormat::OnChangeCustom()
{
// TODO: Add your control notification handler code here
}
void CCurrFormat::OnDblclkCurrformats()
{
// TODO: Add your control notification handler code here
}