You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
776 B
C++
46 lines
776 B
C++
|
|
#include "stdafx.h"
|
|
#include "LaiPuLaser.h"
|
|
#include "afxdialogex.h"
|
|
#include "DlgChildDataAnalysis.h"
|
|
#include "WorkRecord.h"
|
|
#include "GlobalFunction.h"
|
|
#include "LogMgr.h"
|
|
|
|
|
|
|
|
IMPLEMENT_DYNAMIC(CDlgChildDataAnalysis, CMyDlgView)
|
|
BEGIN_MESSAGE_MAP(CDlgChildDataAnalysis, CMyDlgView)
|
|
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
CDlgChildDataAnalysis::CDlgChildDataAnalysis(CWnd* pParent /*=NULL*/)
|
|
: CMyDlgView(CDlgChildDataAnalysis::IDD, pParent)
|
|
{
|
|
|
|
}
|
|
|
|
CDlgChildDataAnalysis::~CDlgChildDataAnalysis()
|
|
{
|
|
}
|
|
|
|
void CDlgChildDataAnalysis::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CMyDlgView::DoDataExchange(pDX);
|
|
|
|
}
|
|
|
|
BOOL CDlgChildDataAnalysis::OnInitDialog()
|
|
{
|
|
CMyDlgView::OnInitDialog();
|
|
|
|
UpdateData(FALSE);
|
|
return TRUE;
|
|
}
|
|
//ÏìÓ¦view ´ò¿ªµÄʱºò
|
|
void CDlgChildDataAnalysis::OnViewOpen()
|
|
{
|
|
|
|
}
|