Click here to Skip to main content
15,916,846 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: a short code for basic graphics Pin
Stephen Hewitt21-Feb-09 22:18
Stephen Hewitt21-Feb-09 22:18 
AnswerRe: a short code for basic graphics Pin
Iain Clarke, Warrior Programmer23-Feb-09 4:45
Iain Clarke, Warrior Programmer23-Feb-09 4:45 
QuestionDeveloping WM5 app, runs differnet in Debug versus Release Pin
uzziah021-Feb-09 12:50
uzziah021-Feb-09 12:50 
AnswerRe: Developing WM5 app, runs differnet in Debug versus Release Pin
uzziah022-Feb-09 15:37
uzziah022-Feb-09 15:37 
Questioncheck existence of file in C++ Pin
meixiang621-Feb-09 11:18
meixiang621-Feb-09 11:18 
AnswerRe: check existence of file in C++ Pin
Iain Clarke, Warrior Programmer21-Feb-09 11:43
Iain Clarke, Warrior Programmer21-Feb-09 11:43 
GeneralRe: check existence of file in C++ Pin
meixiang621-Feb-09 13:49
meixiang621-Feb-09 13:49 
GeneralRe: check existence of file in C++ Pin
enhzflep21-Feb-09 13:59
enhzflep21-Feb-09 13:59 
GeneralRe: check existence of file in C++ Pin
meixiang621-Feb-09 14:14
meixiang621-Feb-09 14:14 
AnswerRe: check existence of file in C++ Pin
Rajesh R Subramanian21-Feb-09 21:08
professionalRajesh R Subramanian21-Feb-09 21:08 
GeneralRe: check existence of file in C++ Pin
David Crow21-Feb-09 14:34
David Crow21-Feb-09 14:34 
GeneralRe: check existence of file in C++ Pin
uzziah022-Feb-09 15:38
uzziah022-Feb-09 15:38 
AnswerRe: check existence of file in C++ Pin
David Crow21-Feb-09 14:34
David Crow21-Feb-09 14:34 
AnswerRe: check existence of file in C++ Pin
Stuart Dootson22-Feb-09 13:48
professionalStuart Dootson22-Feb-09 13:48 
GeneralRe: check existence of file in C++ Pin
meixiang622-Feb-09 16:29
meixiang622-Feb-09 16:29 
AnswerRe: check existence of file in C++ Pin
Dan22-Feb-09 21:25
Dan22-Feb-09 21:25 
QuestionHow to check whether system is connected to internet using VC++? Pin
Supra221-Feb-09 3:02
Supra221-Feb-09 3:02 
AnswerRe: How to check whether system is connected to internet using VC++? Pin
Iain Clarke, Warrior Programmer21-Feb-09 11:46
Iain Clarke, Warrior Programmer21-Feb-09 11:46 
AnswerRe: How to check whether system is connected to internet using VC++? Pin
David Crow21-Feb-09 14:35
David Crow21-Feb-09 14:35 
Questionhow do i read the files from executable file? Pin
balukk21-Feb-09 2:17
balukk21-Feb-09 2:17 
AnswerRe: how do i read the files from executable file? Pin
Iain Clarke, Warrior Programmer21-Feb-09 2:25
Iain Clarke, Warrior Programmer21-Feb-09 2:25 
QuestionRe: how do i read the files from executable file? Pin
David Crow21-Feb-09 14:36
David Crow21-Feb-09 14:36 
QuestionOnCtlColor not working fine in case of PropertyPage. Pin
Le@rner21-Feb-09 0:42
Le@rner21-Feb-09 0:42 
Hi all,

i m write code on OnCtlColor function for color the controls.

HBRUSH CMyPropertyPage2::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
	HBRUSH hbr = CPropertyPage::OnCtlColor(pDC, pWnd, nCtlColor);

	switch (nCtlColor)
	{
		case CTLCOLOR_EDIT:
			pDC->SetTextColor(RGB(0,0,0));
			pDC->SetBkColor(RGB(255,255,255));
			return hbr;

		case CTLCOLOR_STATIC:
			
			LOGBRUSH logbrush;
			m_brush.GetLogBrush( &logbrush );
			pDC->SetTextColor(RGB(0,0,0));
			pDC->SetBkColor(logbrush.lbColor);
			return m_brush;
			

		case CTLCOLOR_BTN:
		case CTLCOLOR_MSGBOX:
		case CTLCOLOR_DLG:
			return m_brush;
		
		default:
			return m_brush;
	}

}


when i use this same code for dialog box its working fine,but in case of property pages its not working fine.

the problem is that its not color the background of RadioBox,CheckBox,GroupBox type controls.

please help me for this.

and tell me solution for this.

thanks in advance

To accomplish great things, we must not only act, but also dream;
not only plan, but also believe.

AnswerRe: OnCtlColor not working fine in case of PropertyPage. Pin
Iain Clarke, Warrior Programmer21-Feb-09 2:28
Iain Clarke, Warrior Programmer21-Feb-09 2:28 
GeneralRe: OnCtlColor not working fine in case of PropertyPage. Pin
Le@rner23-Feb-09 17:26
Le@rner23-Feb-09 17:26 

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.