Click here to Skip to main content
15,905,590 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Scrollbar size Pin
alex.barylski4-Aug-02 16:51
alex.barylski4-Aug-02 16:51 
GeneralOpen Filename dialog won't show. Pin
redeemer4-Aug-02 8:43
redeemer4-Aug-02 8:43 
GeneralRe: Open Filename dialog won't show. Pin
Pavel Klocek4-Aug-02 10:06
Pavel Klocek4-Aug-02 10:06 
QuestionHow to link msvcr70.dll into my program in VC++.net Pin
tfElep4-Aug-02 8:40
tfElep4-Aug-02 8:40 
AnswerRe: How to link msvcr70.dll into my program in VC++.net Pin
Philip Patrick4-Aug-02 9:10
professionalPhilip Patrick4-Aug-02 9:10 
GeneralRe: How to link msvcr70.dll into my program in VC++.net Pin
2sky4-Aug-02 9:44
2sky4-Aug-02 9:44 
GeneralRe: How to link msvcr70.dll into my program in VC++.net Pin
2sky4-Aug-02 9:48
2sky4-Aug-02 9:48 
GeneralPrinting in Landscape Pin
Desmond Mardle4-Aug-02 7:17
Desmond Mardle4-Aug-02 7:17 
:|I am still having trouble trying to print in landscape. Below is my latest code which does not print or change the page to landscape. Any suggestion would be appreciated. I think I feel like a mouse going around in circles.

The code seems to give me a new device context but it does not seem to print.

void CLogbookView::OnPrint(CDC* pDC, CPrintInfo* pInfo)
{
pDC = SetLandscape(pDC);

pDC->TextOut(100,100,"test");
}

CDC* CLogbookView::SetLandscape(CDC* pDC)
{
BOOL bStdSetUpDlg = TRUE;

CWnd *pWnd = this;

CPrintDialog pPrintDialog(bStdSetUpDlg,PD_USEDEVMODECOPIES ,pWnd);
pPrintDialog.GetDefaults();

LPDEVMODE pDEVMODE = pPrintDialog.GetDevMode();
pDEVMODE->dmOrientation = DMORIENT_LANDSCAPE;

pDC->m_hDC = pPrintDialog.CreatePrinterDC();

return pDC;
}




Desmond Mardle
GeneralRe: Printing in Landscape Pin
Roger Allen4-Aug-02 9:28
Roger Allen4-Aug-02 9:28 
Generalquestion about new and delete[] Pin
nss4-Aug-02 6:37
nss4-Aug-02 6:37 
GeneralRe: question about new and delete[] Pin
Pavel Klocek4-Aug-02 6:48
Pavel Klocek4-Aug-02 6:48 
GeneralRe: question about new and delete[] Pin
nss4-Aug-02 7:24
nss4-Aug-02 7:24 
GeneralRe: question about new and delete[] Pin
Philippe Mori5-Aug-02 7:23
Philippe Mori5-Aug-02 7:23 
Questionhow can I respond Enter Event in a editbox? Pin
Angel Kid4-Aug-02 6:21
Angel Kid4-Aug-02 6:21 
AnswerRe: how can I respond Enter Event in a editbox? Pin
valikac4-Aug-02 6:26
valikac4-Aug-02 6:26 
GeneralRe: how can I respond Enter Event in a editbox? Pin
Angel Kid4-Aug-02 6:29
Angel Kid4-Aug-02 6:29 
GeneralRe: how can I respond Enter Event in a editbox? Pin
Pavel Klocek4-Aug-02 7:06
Pavel Klocek4-Aug-02 7:06 
AnswerRe: This is one of the famous question. Pin
Masaaki Onishi4-Aug-02 7:05
Masaaki Onishi4-Aug-02 7:05 
AnswerRe: how can I respond Enter Event in a editbox? Pin
PJ Arends4-Aug-02 8:17
professionalPJ Arends4-Aug-02 8:17 
GeneralRe: how can I respond Enter Event in a editbox? Pin
JohnnyG4-Aug-02 12:07
JohnnyG4-Aug-02 12:07 
GeneralSetFont Pin
Anonymous4-Aug-02 5:14
Anonymous4-Aug-02 5:14 
GeneralRe: SetFont Pin
valikac4-Aug-02 6:23
valikac4-Aug-02 6:23 
GeneralRe: SetFont Pin
Michael Dunn4-Aug-02 7:24
sitebuilderMichael Dunn4-Aug-02 7:24 
Generalsimple question in Vc Pin
glinda4-Aug-02 3:24
glinda4-Aug-02 3:24 
GeneralRe: simple question in Vc Pin
jmkhael4-Aug-02 10:16
jmkhael4-Aug-02 10:16 

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.