AyaNova CE Archive added as recovered from storage during attempt to upgrade a customer from v1.7 to v8!
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
// NullForm.cpp : implementation file
|
||||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "sp.h"
|
||||
#include "NullForm.h"
|
||||
|
||||
#ifdef _DEBUG
|
||||
#define new DEBUG_NEW
|
||||
#undef THIS_FILE
|
||||
static char THIS_FILE[] = __FILE__;
|
||||
#endif
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CNullForm
|
||||
|
||||
IMPLEMENT_DYNCREATE(CNullForm, CFormView)
|
||||
|
||||
CNullForm::CNullForm()
|
||||
: CFormView(CNullForm::IDD)
|
||||
{
|
||||
//{{AFX_DATA_INIT(CNullForm)
|
||||
// NOTE: the ClassWizard will add member initialization here
|
||||
//}}AFX_DATA_INIT
|
||||
}
|
||||
|
||||
CNullForm::~CNullForm()
|
||||
{
|
||||
}
|
||||
|
||||
void CNullForm::DoDataExchange(CDataExchange* pDX)
|
||||
{
|
||||
CFormView::DoDataExchange(pDX);
|
||||
//{{AFX_DATA_MAP(CNullForm)
|
||||
// NOTE: the ClassWizard will add DDX and DDV calls here
|
||||
//}}AFX_DATA_MAP
|
||||
}
|
||||
|
||||
|
||||
BEGIN_MESSAGE_MAP(CNullForm, CFormView)
|
||||
//{{AFX_MSG_MAP(CNullForm)
|
||||
// NOTE - the ClassWizard will add and remove mapping macros here.
|
||||
//}}AFX_MSG_MAP
|
||||
END_MESSAGE_MAP()
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CNullForm diagnostics
|
||||
|
||||
#ifdef _DEBUG
|
||||
void CNullForm::AssertValid() const
|
||||
{
|
||||
CFormView::AssertValid();
|
||||
}
|
||||
|
||||
void CNullForm::Dump(CDumpContext& dc) const
|
||||
{
|
||||
CFormView::Dump(dc);
|
||||
}
|
||||
#endif //_DEBUG
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CNullForm message handlers
|
||||
|
||||
void CNullForm::Activate()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void CNullForm::DeActivate()
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user