Click here to Skip to main content
15,895,011 members
Articles / Desktop Programming / MFC

Recordsets and invoices

Rate me:
Please Sign up or sign in to vote.
3.96/5 (9 votes)
23 Sep 2005CPOL10 min read 52.8K   808   21  
How to use CRecordset with the Northwind database to create an invoice.
#include "stdafx.h"
#include "Invoice.h"

#include "InvoiceDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CInvoiceDoc

IMPLEMENT_DYNCREATE(CInvoiceDoc, CDocument)

BEGIN_MESSAGE_MAP(CInvoiceDoc, CDocument)
	//{{AFX_MSG_MAP(CInvoiceDoc)
		// 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()

/////////////////////////////////////////////////////////////////////////////
// CInvoiceDoc construction/destruction

CInvoiceDoc::CInvoiceDoc()
{
	// TODO: add one-time construction code here

}

CInvoiceDoc::~CInvoiceDoc()
{
}

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

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

	return TRUE;
}

/////////////////////////////////////////////////////////////////////////////
// CInvoiceDoc serialization

void CInvoiceDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CInvoiceDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CInvoiceDoc commands

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Pinnacle Business Systems
United States United States

The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.

HTTP 404 - File not found
Internet Information Services

Comments and Discussions