How can i set map mode for print??
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hi everyone ~~ can you help me ! Now I'm working in my project. I have a problem With print.i ues map mode is MM_TEXT but printed the character display so small so i use LPtoDP but it was like change before ,so i need help how to change ???? code like this: void CMyFormView::OnDraw(CDC* pDC) { CFormDoc* pDoc = GetDocument(); ASSERT_VALID(pDoc); pDC->SetMapMode(MM_TEXT); RECT rc; GetClientRect(&rc); pDC->LPtoDP(&rc); pDC->TextOut(110, 200, "ad"); } nothing