void View클래스 이름::OnFilePrintPreview()
{
CFilePrintPreviewState *pState = new CPrintPreviewState;
if(!DoPrintPreview(AFX_IDD_PREVIEW_TOOLBAR, this,
RUNTIME_CLASS(CPreviewView, pState))
{
TRACE0("Error : DoPrintPreview failed");
AfxMessageBox(AFX_IDP_COMMAND_FAILURE);
delete pState;
}
}
여기서 중요한 부분!!
#include "afxpriv.h" // print preview
를 추가 해주셔야 합니다. viewclass.cpp
MFC 프린터 관련 함수
http://blog.naver.com/reverse_ing?Redirect=Log&logNo=60140048162
프린터 출력하기
캡처와 프린트기능을 구현한 예제
http://www.tipssoft.com/bulletin/board.php?bo_table=update&wr_id=46
MFC Print Tutorial
http://www.codersource.net/mfc/mfctutorials/mfcprinttutorial.aspx
MFC GDI Tutorials: GDI Printing, GDI+ Printing
http://www.ucancode.net/faq/MFC-Tutorials-GDI-Print-Articles.htm
MFC Example: Print Preview in MFC - Dialog
http://www.ucancode.net/faq/Print-Preview-MFC-Dialog.htm
MFC Printing: Using the Document/View Architecture
http://www.functionx.com/visualc/printing/docviewprinting.htm
Print Previewing without the Document/View Framework
http://www.codeproject.com/Articles/65/Print-Previewing-without-the-Document-View-Framewo
'C & C++ > MFC 컨트롤' 카테고리의 다른 글
[Slider] 슬라이더 컨트롤 (0) | 2011.04.25 |
---|---|
[Dialog] 모서리가 둥근 윈도우 (0) | 2011.04.25 |
API 를 이용하여 컨트롤 만들기 (0) | 2011.04.25 |
[Tree] 트리 컨트롤러 (0) | 2011.04.25 |
[Slider] 비트맵 슬라이더 (0) | 2011.04.25 |
댓글