Click here to Skip to main content
15,886,110 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Accessing a method in the Dlg object from the App object. Pin
LCI10-Mar-08 5:47
LCI10-Mar-08 5:47 
GeneralRe: Accessing a method in the Dlg object from the App object. Pin
David Crow10-Mar-08 6:38
David Crow10-Mar-08 6:38 
GeneralRe: Accessing a method in the Dlg object from the App object. Pin
toxcct10-Mar-08 6:26
toxcct10-Mar-08 6:26 
GeneralRe: Accessing a method in the Dlg object from the App object. Pin
Nathan Holt at EMOM10-Mar-08 7:06
Nathan Holt at EMOM10-Mar-08 7:06 
GeneralPrintWindow Pin
Soumyadipta10-Mar-08 4:08
Soumyadipta10-Mar-08 4:08 
GeneralRe: PrintWindow Pin
Cranky10-Mar-08 4:29
Cranky10-Mar-08 4:29 
GeneralRe: PrintWindow Pin
Soumyadipta10-Mar-08 4:32
Soumyadipta10-Mar-08 4:32 
GeneralRe: PrintWindow Pin
Ernest Laurentin10-Mar-08 4:38
Ernest Laurentin10-Mar-08 4:38 
I assume you wanted to do this in MFC...
bool CaptureWindow(CWnd* pWnd, CBitmap* pBitmap)
{
    CRect rc;
    pWnd->GetClientRect( rc );
    CClientDC dc(pWnd);
    if ( pBitmap->CreateCompatibleBitmap(&dc, rc.Width(), rc.Height()))
    {
       CDC memdc;
       memdc.CreateCompatibleDC( &dc );
       CBitmap* pOldBitmap = (CBitmap*) memdc.SelectObject( pBitmap );
       memdc.BitBlt(0, 0, rc.Width(), rc.Height(), &dc, 0, 0, SRCCOPY);
       memdc.SelectObject( pOldBitmap );
       memdc.DeleteDC();
       return true;
    }
    return false;
}


God bless,
Ernest Laurentin

GeneralRe: PrintWindow Pin
Soumyadipta10-Mar-08 4:46
Soumyadipta10-Mar-08 4:46 
GeneralRe: PrintWindow Pin
Soumyadipta10-Mar-08 5:08
Soumyadipta10-Mar-08 5:08 
GeneralRe: PrintWindow Pin
Ernest Laurentin10-Mar-08 8:40
Ernest Laurentin10-Mar-08 8:40 
GeneralMy Dll Injector Code Does Not Work-, listing processes and injecting .dll- Help! Pin
Mike Yurgalavage10-Mar-08 4:05
Mike Yurgalavage10-Mar-08 4:05 
GeneralRe: My Dll Injector Code Does Not Work-, listing processes and injecting .dll- Help! Pin
Stephen Hewitt10-Mar-08 15:11
Stephen Hewitt10-Mar-08 15:11 
GeneralRe: My Dll Injector Code Does Not Work-, listing processes and injecting .dll- Help! Pin
Mike Yurgalavage10-Mar-08 15:49
Mike Yurgalavage10-Mar-08 15:49 
GeneralRe: My Dll Injector Code Does Not Work-, listing processes and injecting .dll- Help! Pin
Stephen Hewitt10-Mar-08 15:51
Stephen Hewitt10-Mar-08 15:51 
GeneralRe: My Dll Injector Code Does Not Work-, listing processes and injecting .dll- Help! Pin
Mike Yurgalavage10-Mar-08 16:43
Mike Yurgalavage10-Mar-08 16:43 
GeneralRe: My Dll Injector Code Does Not Work-, listing processes and injecting .dll- Help! Pin
Stephen Hewitt10-Mar-08 17:57
Stephen Hewitt10-Mar-08 17:57 
GeneralRe: My Dll Injector Code Does Not Work-, listing processes and injecting .dll- Help! Pin
Stephen Hewitt10-Mar-08 17:43
Stephen Hewitt10-Mar-08 17:43 
GeneralRe: My Dll Injector Code Does Not Work-, listing processes and injecting .dll- Help! Pin
Mike Yurgalavage11-Mar-08 3:41
Mike Yurgalavage11-Mar-08 3:41 
GeneralRe: My Dll Injector Code Does Not Work-, listing processes and injecting .dll- Help! Pin
Mike Yurgalavage12-Mar-08 6:29
Mike Yurgalavage12-Mar-08 6:29 
Generalcreate an toolbar,not in any window or dialog box.. Pin
preeti sharma10-Mar-08 2:29
preeti sharma10-Mar-08 2:29 
QuestionRe: create an toolbar,not in any window or dialog box.. Pin
Maximilien10-Mar-08 2:50
Maximilien10-Mar-08 2:50 
Questionabout lable font size Pin
savitri10-Mar-08 2:08
savitri10-Mar-08 2:08 
GeneralRe: about lable font size Pin
David Crow10-Mar-08 3:02
David Crow10-Mar-08 3:02 
GeneralVariable Static text box Pin
neha.agarwal2710-Mar-08 1:53
neha.agarwal2710-Mar-08 1:53 

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.