Click here to Skip to main content
15,902,938 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Printing Error Pin
Hamid_RT27-Jul-06 7:10
Hamid_RT27-Jul-06 7:10 
GeneralRe: Printing Error Pin
mikobi28-Jul-06 5:01
mikobi28-Jul-06 5:01 
QuestionRe: Printing Error Pin
Hamid_RT28-Jul-06 6:48
Hamid_RT28-Jul-06 6:48 
AnswerRe: Printing Error Pin
mikobi28-Jul-06 6:59
mikobi28-Jul-06 6:59 
GeneralRe: Printing Error Pin
Hamid_RT28-Jul-06 7:36
Hamid_RT28-Jul-06 7:36 
GeneralRe: Printing Error Pin
mikobi28-Jul-06 7:41
mikobi28-Jul-06 7:41 
GeneralRe: Printing Error Pin
mikobi28-Jul-06 7:43
mikobi28-Jul-06 7:43 
GeneralRe: Printing Error Pin
Hamid_RT28-Jul-06 8:02
Hamid_RT28-Jul-06 8:02 
I said you can use from PrintDlg(&pd); like this
	PRINTDLG	pd;
	DOCINFO		di;
      memset((void *)&pd, 0,sizeof(PRINTDLG));
      pd.lStructSize = sizeof(PRINTDLG);
      pd.hwndOwner   = m_hWnd;
      pd.Flags =PD_RETURNDC|PD_ENABLESETUPTEMPLATE;
      pd.hInstance   = NULL;
	  pd.nMaxPage=1;
	  pd.nMinPage=1;
	  pd.nCopies=1;
	  pd.hDevMode=0;
	  pd.nFromPage=1;
	  pd.nToPage=1;
	PrintDlg(&pd);

  di.cbSize      = sizeof(DOCINFO);
  di.lpszDocName = "Test";
  di.lpszOutput  = NULL;

StartDoc(pd.hDC, &di);
CImage m_Image;//you must include atlimage.h
m_Image.Load("c:\\0.bmp");
m_Image.BitBlt(pd.hDC,0,0,800,600,0,0,SRCCOPY);
EndDoc(pd.hDC);




WhiteSky


GeneralRe: Printing Error Pin
mikobi28-Jul-06 20:38
mikobi28-Jul-06 20:38 
GeneralRe: Printing Error Pin
Hamid_RT28-Jul-06 22:09
Hamid_RT28-Jul-06 22:09 
GeneralRe: Printing Error Pin
mikobi28-Jul-06 22:13
mikobi28-Jul-06 22:13 
GeneralRe: Printing Error Pin
Hamid_RT28-Jul-06 22:41
Hamid_RT28-Jul-06 22:41 
GeneralRe: Printing Error Pin
mikobi28-Jul-06 23:34
mikobi28-Jul-06 23:34 
GeneralRe: Printing Error Pin
Hamid_RT29-Jul-06 2:40
Hamid_RT29-Jul-06 2:40 
GeneralRe: Printing Error Pin
mikobi30-Jul-06 21:24
mikobi30-Jul-06 21:24 
QuestionAbout ComboBox Pin
Anu_Bala23-Jul-06 21:01
Anu_Bala23-Jul-06 21:01 
AnswerRe: About ComboBox Pin
Aneesh Valeri23-Jul-06 21:13
Aneesh Valeri23-Jul-06 21:13 
GeneralRe: About ComboBox Pin
Anu_Bala23-Jul-06 21:17
Anu_Bala23-Jul-06 21:17 
AnswerRe: About ComboBox Pin
Steve Echols23-Jul-06 21:21
Steve Echols23-Jul-06 21:21 
QuestionRe: About ComboBox Pin
Hamid_RT23-Jul-06 21:24
Hamid_RT23-Jul-06 21:24 
AnswerRe: About ComboBox Pin
David Crow24-Jul-06 3:32
David Crow24-Jul-06 3:32 
QuestionHow to add a JPEG image to a Dialog box ? Pin
Vinod Sankaranarayanan23-Jul-06 20:28
Vinod Sankaranarayanan23-Jul-06 20:28 
AnswerRe: How to add a JPEG image to a Dialog box ? Pin
Anilkumar K V23-Jul-06 20:34
Anilkumar K V23-Jul-06 20:34 
AnswerRe: How to add a JPEG image to a Dialog box ? Pin
Hamid_RT23-Jul-06 21:00
Hamid_RT23-Jul-06 21:00 
GeneralRe: How to add a JPEG image to a Dialog box ? Pin
ThatsAlok23-Jul-06 23:31
ThatsAlok23-Jul-06 23:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.