5,660,782 members and growing! (14,963 online)
Email Password   helpLost your password?
Desktop Development » Edit Controls » General     Intermediate

Changing the background color of a read-only edit control

By Kevin Bond

An article on very easily changing the color of a read-only edit control.
VC6, C++Windows, WinXP, MFC, VS6, Visual Studio, Dev

Posted: 18 Jan 2005
Updated: 18 Jan 2005
Views: 64,621
Bookmarked: 18 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
29 votes for this Article.
Popularity: 5.81 Rating: 3.97 out of 5
2 votes, 6.9%
1
3 votes, 10.3%
2
2 votes, 6.9%
3
4 votes, 13.8%
4
18 votes, 62.1%
5

Introduction

This is my first article. So bear with me. I know it is a simple control but I spent quite a lot of time figuring this out. I hope someone can read this and figure it out quicker.

The Problem

I needed a read-only text box. I created one using the CEdit control. Problem was that, it had a grey background. There is no option or function to change it directly.

The Solution

I derived a class from CEdit called CReadOnlyEdit. I intercepted the background ON_WM_CTLCOLOR_REFLECT() message. This message's function looks like this:

HBRUSH CReadOnlyEdit::CtlColor(CDC* pDC, UINT nCtlColor) 
{
	// TODO: Return a non-NULL brush if the parent's 

	//handler should not be called

	return NULL;
}

To change the background color of the EditBox, instead of returning NULL for the function above, I returned a brush with the color I wanted for the background. Also if you notice in the function, above one of the parameters is a pointer to the Device Context (pDC) of the control. I used the pDC->SetTextColor(COLORREF rgb) function to change the text color. I then ran into a slight problem. The background changed to the correct color and the text did as well but the background of the text stayed white. This was a simple fix. I simply set the background color of the text using pDC->SetBkColor(COLORREF rgb) function. This is my modified function:

HBRUSH CReadOnlyEdit::CtlColor(CDC* pDC, UINT nCtlColor) 
{
	// TODO: Return a non-NULL brush if the parent's 

	//handler should not be called


	//set text color

	pDC->SetTextColor(m_crText);

	//set the text's background color

	pDC->SetBkColor(m_crBackGnd);

  //return the brush used for background this sets control background

  return m_brBackGnd;
}

As you can see my control has three variables: COLORREF m_crText, COLORREF m_crBackGnd, and CBrush m_brBackGnd. I added two functions to my control, one to change the background color (and update the brush) and one to change the text color. Those two functions look like this:

void CReadOnlyEdit::SetBackColor(COLORREF rgb)
{
	//set background color ref (used for text's background)

	m_crBackGnd = rgb;
	
	//free brush

	if (m_brBackGnd.GetSafeHandle())
       m_brBackGnd.DeleteObject();
	//set brush to new color

	m_brBackGnd.CreateSolidBrush(rgb);
	
	//redraw

	Invalidate(TRUE);
}
void CReadOnlyEdit::SetTextColor(COLORREF rgb)
{
  //set text color ref

  m_crText = rgb;

  //redraw

  Invalidate(TRUE);
}

The reason I have a COLORREF background variable is because to change the background color of the device context I need a COLORREF. A problem I ran into was, the entire edit control was not being colored right away, this is why I added the Invalidate(TRUE) call to repaint the control.

That's all there was to it. By the way, my control doesn't set a background or text color by default. This can easily be done in the constructor.

Using the code

Dialog Based:

Create a CEdit control. Control double-click it. The Add Member Variable dialog appears. Choose Control for the Category and CEdit for the variable type. Set the variable name to something like m_wndEdit. When modifying the control, remember m_wndEdit is the control not a string containing the window text. To access the text you will have to use the proper functions for the control (ie. CEdit::SetWindowText()).

Programmatically:

The simplest way I can think of to use this is just change all the CEdit controls you want to be read-only to CReadOnlyEdit.

Changing the colors:

To change the background and text color of the control using the SetBack Color(COLORREF rgb) and SetTextColor(COLORREF rgb) functions. In the demo I use a CColorDialog to get a color. The following is code from my demo. It is located in the Change Back Color button's click function:

void CReadOnlyDlg::OnBack() 
{	
	// call color dialog and change background color

	CColorDialog dlg;
	if (dlg.DoModal() == IDOK)
		m_wndReadOnly.SetBackColor(dlg.GetColor());
	
}

Where m_wndReadOnly is the CReadOnlyEdit control.

Note: My control doesn't set the read-only flag, you have to do this yourself in the CReadOnlyEdit::Create function or in the dialog control properties. Also, this can be done with the CEdit::SetReadOnly(BOOL) function.

History

  • Jan 21 2005 - Update.
    • Fixed Bugs.
    • Added SetBackColor and SetTextColor functions.
  • Jan 18 2005 - Posted
    • Basic control, changed background color to white.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Kevin Bond


I am 20 years old and I live in Kitchener, Ontario. I have been programming since I was 10 years old. I started with QBasic, then up to Visual Basic, and finally C++. I am an avid programmer of Windows as well. Besides that, I am also interested in automation, PLCs, and electronics. I will be attending Conestoga College in Sept. 2005 for their Mechanical Engineering: Automation and Robotics program. I hope to someday have a job where I can incorporate my skills with programming Windows with the skills I learn in that program.
Location: Canada Canada

Other popular Edit Controls articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 19 of 19 (Total in Forum: 19) (Refresh)FirstPrevNext
GeneralMuch easier and quicker methodmembermr. bleh10:45 30 Oct '07  
GeneralThank youmemberminiiiii19:40 29 Jul '07  
GeneralThank youmembercompex11:11 8 Jan '07  
QuestionHow to implement this in WTLmemberCodeFundu0:46 18 Mar '06  
QuestiontextColor stays grayed when Ctrl is disabledmemberFriendOfAsherah23:22 11 Mar '06  
QuestionChaning the font in ReadOnlyEditmemberbcamp12:50 3 Mar '06  
GeneralHow does it work.memberCastleIsle9:05 17 Feb '06  
GeneralHow to make CReadOnlyEdit in MFC ClassWizard ?memberkrya0:43 2 Feb '06  
GeneralRe: How to make CReadOnlyEdit in MFC ClassWizard ?memberCastleIsle8:29 17 Feb '06  
Generalmercimemberquicksoft20:45 15 Dec '05  
GeneralAll this for what? Here is one liner to accomplish the same.memberthe_gurudev19:07 29 Nov '05  
GeneralRe: All this for what? Here is one liner to accomplish the same.supporterchiona14:41 18 Dec '07  
Generalinitializing background- and textcolor without control variablemembermekanoo14:35 9 Sep '05  
GeneralText BackgroundmemberBrian (BH)1:37 28 Jan '05  
GeneralRe: Text Backgroundmemberbob169729:04 8 Nov '05  
GeneralGreat first article!memberHans Dietrich15:05 19 Jan '05  
GeneralHow to do it in c#membernagarsoft11:08 19 Jan '05  
GeneralRe: How to do it in c#memberW. Kleinschmit23:05 19 Jan '05  
GeneralRe: How to do it in c#sussAnonymous5:42 2 Aug '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 18 Jan 2005
Editor: Sumalatha K.R.
Copyright 2005 by Kevin Bond
Everything else Copyright © CodeProject, 1999-2008
Web07 | Advertise on the Code Project