Click here to Skip to main content
16,015,900 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: showing the screen Pin
jan larsen4-Mar-03 3:34
jan larsen4-Mar-03 3:34 
GeneralRe: showing the screen Pin
naradaji4-Mar-03 3:45
naradaji4-Mar-03 3:45 
GeneralRe: showing the screen Pin
jhwurmbach4-Mar-03 3:47
jhwurmbach4-Mar-03 3:47 
GeneralRe: showing the screen Pin
Anonymous4-Mar-03 5:33
Anonymous4-Mar-03 5:33 
Generalurgent..How to use GetDeviceCaps() n GetPixel() problem Pin
raner4-Mar-03 2:58
raner4-Mar-03 2:58 
GeneralRe: urgent..How to use GetDeviceCaps() n GetPixel() problem Pin
Scott H. Settlemier4-Mar-03 8:21
Scott H. Settlemier4-Mar-03 8:21 
GeneralRe: urgent..How to use GetDeviceCaps() n GetPixel() problem Pin
raner4-Mar-03 9:39
raner4-Mar-03 9:39 
GeneralRe: urgent..How to use GetDeviceCaps() n GetPixel() problem Pin
73Zeppelin4-Mar-03 16:34
73Zeppelin4-Mar-03 16:34 
You render to an offscreen bitmap by creating a memory device context for the bmp, or MemDC. You can then blt (BitBlt) to the memDC before blitting to the screen (or other DC).
Something like:

CDC MemDC;

// Get the current DC and create a compatible memDC
MemDC.CreateCompatibleDC(pDC);

// Can now Blt to the MemDC...
// Do stuff - draw, render, etc...

// Don't forget to clean up..
MemDC.SelectObject();

GeneralRe: urgent..How to use GetDeviceCaps() n GetPixel() problem Pin
raner5-Mar-03 5:09
raner5-Mar-03 5:09 
GeneralRe: urgent..How to use GetDeviceCaps() n GetPixel() problem Pin
Scott H. Settlemier5-Mar-03 6:34
Scott H. Settlemier5-Mar-03 6:34 
GeneralBug in Visual C++ 6.0 MFC Appwizard Pin
Tre K Renegade4-Mar-03 2:20
Tre K Renegade4-Mar-03 2:20 
GeneralRe: Bug in Visual C++ 6.0 MFC Appwizard Pin
Jon Hulatt4-Mar-03 2:56
Jon Hulatt4-Mar-03 2:56 
GeneralJPEG,GIF File Display Pin
RaajaOfSelf4-Mar-03 1:20
RaajaOfSelf4-Mar-03 1:20 
GeneralRe: JPEG,GIF File Display Pin
Chris Losinger4-Mar-03 1:36
professionalChris Losinger4-Mar-03 1:36 
GeneralRe: JPEG,GIF File Display Pin
Chintan4-Mar-03 3:00
Chintan4-Mar-03 3:00 
GeneralRe: JPEG,GIF File Display Pin
Mike Zinni4-Mar-03 5:12
Mike Zinni4-Mar-03 5:12 
GeneralRe: JPEG,GIF File Display Pin
Big Art4-Mar-03 7:32
Big Art4-Mar-03 7:32 
GeneralRe: JPEG,GIF File Display Pin
Big Art4-Mar-03 7:41
Big Art4-Mar-03 7:41 
GeneralAutocompletion doesn't work!!! Pin
willempipi4-Mar-03 1:19
willempipi4-Mar-03 1:19 
GeneralRe: Autocompletion doesn't work!!! Pin
Alvaro Mendez4-Mar-03 9:47
Alvaro Mendez4-Mar-03 9:47 
GeneralPlay Images(URGENT) Pin
satyavasu4-Mar-03 1:10
satyavasu4-Mar-03 1:10 
Generalvoice chat project doubt Pin
anuvignesh4-Mar-03 0:59
anuvignesh4-Mar-03 0:59 
Generalmodeless dialog box Pin
Anonymous4-Mar-03 0:12
Anonymous4-Mar-03 0:12 
GeneralRe: modeless dialog box Pin
jhwurmbach4-Mar-03 0:21
jhwurmbach4-Mar-03 0:21 
GeneralRe: modeless dialog box Pin
Anonymous4-Mar-03 0:35
Anonymous4-Mar-03 0:35 

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.