⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 myworkdoc.cpp

📁 VC6开发的用于进行色谱分析的示例
💻 CPP
字号:
// MyWorkDoc.cpp : implementation of the CMyWorkDoc class
//

#include "stdafx.h"
#include "MyWork.h"

#include "MyWorkDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMyWorkDoc

IMPLEMENT_DYNCREATE(CMyWorkDoc, CDocument)

BEGIN_MESSAGE_MAP(CMyWorkDoc, CDocument)
	//{{AFX_MSG_MAP(CMyWorkDoc)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyWorkDoc construction/destruction

CMyWorkDoc::CMyWorkDoc()
{
	// TODO: add one-time construction code here
	m_cname="";
	m_ename="";
	m_gnzz="";
	m_picpath="";
	m_zwxt="";
	open_flag=false;
}

CMyWorkDoc::~CMyWorkDoc()
{
}

BOOL CMyWorkDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CMyWorkDoc serialization

void CMyWorkDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
		open_flag=true;
		ar>>doc_number;
		for (int sn_doc=0;sn_doc<=doc_number;sn_doc++)
			ar>>doc_data[sn_doc];
		
	
         UpdateAllViews(NULL);

	}
}

/////////////////////////////////////////////////////////////////////////////
// CMyWorkDoc diagnostics

#ifdef _DEBUG
void CMyWorkDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CMyWorkDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMyWorkDoc commands

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -