Click here to Skip to main content
15,891,136 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionWhat is wrong with this program? Pin
belleissexy33315-Sep-09 13:11
belleissexy33315-Sep-09 13:11 
AnswerRe: What is wrong with this program? Pin
Chris Losinger15-Sep-09 14:55
professionalChris Losinger15-Sep-09 14:55 
AnswerRe: What is wrong with this program? Pin
Iain Clarke, Warrior Programmer15-Sep-09 21:19
Iain Clarke, Warrior Programmer15-Sep-09 21:19 
QuestionPassword recovery for .LIB file Pin
DallasProgrammer15-Sep-09 6:36
DallasProgrammer15-Sep-09 6:36 
AnswerRe: Password recovery for .LIB file Pin
Stuart Dootson15-Sep-09 6:56
professionalStuart Dootson15-Sep-09 6:56 
GeneralRe: Password recovery for .LIB file Pin
DallasProgrammer15-Sep-09 8:27
DallasProgrammer15-Sep-09 8:27 
GeneralRe: Password recovery for .LIB file Pin
Cedric Moonen15-Sep-09 8:45
Cedric Moonen15-Sep-09 8:45 
GeneralRe: Password recovery for .LIB file Pin
«_Superman_»15-Sep-09 19:38
professional«_Superman_»15-Sep-09 19:38 
QuestionRe: Password recovery for .LIB file Pin
David Crow15-Sep-09 9:35
David Crow15-Sep-09 9:35 
AnswerRe: Password recovery for .LIB file Pin
Chris Losinger15-Sep-09 12:06
professionalChris Losinger15-Sep-09 12:06 
QuestionRe: Password recovery for .LIB file Pin
Maximilien15-Sep-09 9:42
Maximilien15-Sep-09 9:42 
QuestionQuestion on g++ compiler options Pin
minkowski15-Sep-09 6:23
minkowski15-Sep-09 6:23 
AnswerRe: Question on g++ compiler options Pin
Stuart Dootson15-Sep-09 7:06
professionalStuart Dootson15-Sep-09 7:06 
GeneralRe: Question on g++ compiler options Pin
minkowski15-Sep-09 22:47
minkowski15-Sep-09 22:47 
GeneralRe: Question on g++ compiler options Pin
Stuart Dootson15-Sep-09 23:33
professionalStuart Dootson15-Sep-09 23:33 
GeneralRe: Question on g++ compiler options Pin
minkowski16-Sep-09 0:29
minkowski16-Sep-09 0:29 
GeneralRe: Question on g++ compiler options Pin
Stuart Dootson16-Sep-09 0:37
professionalStuart Dootson16-Sep-09 0:37 
GeneralRe: Question on g++ compiler options Pin
minkowski16-Sep-09 1:00
minkowski16-Sep-09 1:00 
QuestionHow can I force the redraw of buttons which overlay a picture bitmap in a Dialog Pin
Neil Urquhart15-Sep-09 4:31
Neil Urquhart15-Sep-09 4:31 
AnswerRe: How can I force the redraw of buttons which overlay a picture bitmap in a Dialog Pin
Code-o-mat15-Sep-09 4:48
Code-o-mat15-Sep-09 4:48 
GeneralRe: How can I force the redraw of buttons which overlay a picture bitmap in a Dialog Pin
Neil Urquhart15-Sep-09 6:02
Neil Urquhart15-Sep-09 6:02 
Could'nt find WS_CLIPSIBLINGS as property to my Picture Control ! I tired setting WS_CLIPCHILDREN in the dialog, it had no effect.

RedrawWindow seems to be "half" working in that it is redrawing the buttons before my pop dialog displays. But after exiting the popup and reverting the image to the orignal bitmap the button redraw does not have any effect. ie After finishing the ButtonPressed func all the buttons have dissappeared again except the one I pressed.

Any more thoughts ?


My code is now like this in the button selection.

void CDesignEditDlg::ButtonPressed(int btn)<br />
{<br />
	m_ctrlPageImage.SetBitmap(cBmp[1]);<br />
<br />
	CButton* pImage ;<br />
	int b ;<br />
	for(b = 0 ; cButPos[b].id > 0 ; b++) {<br />
		// Move the button<br />
		pImage = (CButton*)GetDlgItem(cButPos[b].id);<br />
		pImage->RedrawWindow() ;<br />
	}<br />
<br />
	CColourFaderDlg dlg;<br />
	int nResponse = dlg.DoModal();<br />
	if (nResponse == IDOK)<br />
	{<br />
		// TODO: Place code here to handle when the dialog is<br />
		//  dismissed with OK<br />
	}<br />
	else if (nResponse == IDCANCEL)<br />
	{<br />
		// TODO: Place code here to handle when the dialog is<br />
		//  dismissed with Cancel<br />
	}<br />
<br />
	for(b = 0 ; cButPos[b].id > 0 ; b++) {<br />
		// Move the button<br />
		pImage = (CButton*)GetDlgItem(cButPos[b].id);<br />
		pImage->RedrawWindow() ;  // Seems to have no effect<br />
	}<br />
<br />
	m_ctrlPageImage.SetBitmap(cBmp[1]);<br />
}

GeneralRe: How can I force the redraw of buttons which overlay a picture bitmap in a Dialog Pin
Neil Urquhart15-Sep-09 6:09
Neil Urquhart15-Sep-09 6:09 
GeneralRe: How can I force the redraw of buttons which overlay a picture bitmap in a Dialog Pin
Code-o-mat15-Sep-09 6:13
Code-o-mat15-Sep-09 6:13 
AnswerRe: How can I force the redraw of buttons which overlay a picture bitmap in a Dialog [modified] Pin
Moak15-Sep-09 14:09
Moak15-Sep-09 14:09 
GeneralRe: How can I force the redraw of buttons which overlay a picture bitmap in a Dialog Pin
Neil Urquhart15-Sep-09 20:04
Neil Urquhart15-Sep-09 20:04 

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.