Click here to Skip to main content
15,888,521 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionFormatting Output Pin
Sarah Trattner20-Feb-13 12:02
Sarah Trattner20-Feb-13 12:02 
AnswerRe: Formatting Output Pin
Garth J Lancaster20-Feb-13 12:33
professionalGarth J Lancaster20-Feb-13 12:33 
GeneralRe: Formatting Output Pin
Sarah Trattner20-Feb-13 13:00
Sarah Trattner20-Feb-13 13:00 
GeneralRe: Formatting Output Pin
Garth J Lancaster20-Feb-13 13:26
professionalGarth J Lancaster20-Feb-13 13:26 
GeneralRe: Formatting Output Pin
Garth J Lancaster20-Feb-13 13:37
professionalGarth J Lancaster20-Feb-13 13:37 
QuestionBOM Code Pin
Michael Haephrati20-Feb-13 10:41
professionalMichael Haephrati20-Feb-13 10:41 
SuggestionRe: BOM Code Pin
David Crow20-Feb-13 10:47
David Crow20-Feb-13 10:47 
GeneralRe: BOM Code Pin
Michael Haephrati20-Feb-13 10:49
professionalMichael Haephrati20-Feb-13 10:49 
QuestionOn displaying two images second image overlapps first image Pin
Sachin k Rajput 20-Feb-13 0:32
Sachin k Rajput 20-Feb-13 0:32 
I'm writing a program to display multiple images on character select:
my code is on
C++
case WM_CHAR:
		{
		
		switch((char)wParam)
		{
				
		case 'A': case 'a':
			
		hbmp =  LoadBitmap(hInst, MAKEINTRESOURCE(IDB_BITMAP2));
 
		break;
		case 'B': case 'b':	
	
			hbmp =  LoadBitmap(hInst, MAKEINTRESOURCE(IDB_BITMAP3));
			
			break;
			case 'C': case 'c':
			hbmp =  LoadBitmap(hInst, MAKEINTRESOURCE(IDB_BITMAP4));
			
			break;
		 default:
            break;
		
		}
		}
		break;


case WM_PAINT:
 
		{
 hDC = GetDC(picBoxDisp);
  
 	    /* Create a memory device compatible with the above DC variable*/
	    MemDCExercising = CreateCompatibleDC(hDC);
             /* Select the new bitmap*/
             SelectObject(MemDCExercising, hbmp);
	    /* Copy the bits from the memory DC into the current dc*/
	    BitBlt(hDC, 0, 0, 200, 200, MemDCExercising, 0, 0, SRCCOPY);
DeleteObject(hbmp);			
    DeleteDC(MemDCExercising);
	
	SendMessage(picBoxDisp,BM_SETIMAGE,IMAGE_BITMAP,(LPARAM)hbmp);


Images are displayed correctly but second image overlapps first...
AnswerRe: On displaying two images second image overlapps first image Pin
Richard MacCutchan20-Feb-13 2:40
mveRichard MacCutchan20-Feb-13 2:40 
AnswerRe: On displaying two images second image overlapps first image Pin
Michael Haephrati20-Feb-13 10:15
professionalMichael Haephrati20-Feb-13 10:15 
QuestionCFileDialog with preview working in Xp but not in Win7 Pin
002comp19-Feb-13 18:50
002comp19-Feb-13 18:50 
AnswerRe: CFileDialog with preview working in Xp but not in Win7 Pin
Richard MacCutchan19-Feb-13 22:10
mveRichard MacCutchan19-Feb-13 22:10 
GeneralRe: CFileDialog with preview working in Xp but not in Win7 Pin
002comp19-Feb-13 22:46
002comp19-Feb-13 22:46 
GeneralRe: CFileDialog with preview working in Xp but not in Win7 Pin
Richard MacCutchan19-Feb-13 23:01
mveRichard MacCutchan19-Feb-13 23:01 
GeneralRe: CFileDialog with preview working in Xp but not in Win7 Pin
002comp20-Feb-13 18:46
002comp20-Feb-13 18:46 
GeneralRe: CFileDialog with preview working in Xp but not in Win7 Pin
Richard MacCutchan20-Feb-13 21:06
mveRichard MacCutchan20-Feb-13 21:06 
QuestionProblem Reading/Writing Registry in Windows 7? Pin
Member 919975419-Feb-13 9:40
Member 919975419-Feb-13 9:40 
AnswerRe: Problem Reading/Writing Registry in Windows 7? Pin
David Crow19-Feb-13 9:50
David Crow19-Feb-13 9:50 
GeneralRe: Problem Reading/Writing Registry in Windows 7? Pin
Member 919975419-Feb-13 13:10
Member 919975419-Feb-13 13:10 
GeneralRe: Problem Reading/Writing Registry in Windows 7? Pin
Peter_in_278019-Feb-13 20:48
professionalPeter_in_278019-Feb-13 20:48 
GeneralRe: Problem Reading/Writing Registry in Windows 7? Pin
Member 919975420-Feb-13 6:27
Member 919975420-Feb-13 6:27 
AnswerRe: Problem Reading/Writing Registry in Windows 7? Pin
jschell20-Feb-13 8:11
jschell20-Feb-13 8:11 
GeneralRe: Problem Reading/Writing Registry in Windows 7? Pin
jeron120-Feb-13 8:14
jeron120-Feb-13 8:14 
GeneralRe: Problem Reading/Writing Registry in Windows 7? Pin
Member 919975420-Feb-13 16:31
Member 919975420-Feb-13 16: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.