Re: CRichEditView doublt



Hey thanks that worked for me .....
But which is the right approach .

1) The one u mentioned
OR
2) HBRUSH CActivitySummaryDetailView::CtlColor(CDC* pDC, UINT
nCtlColor)
{
return static_cast<HBRUSH>(m_brush.GetSafeHandle());
}



On Jul 31, 8:11 pm, "AliR \(VC++ MVP\)" <A...@xxxxxxxxxxxxx> wrote:
All you have to do is return a white brush from CtlColor.

HBRUSH CEditViewEx::CtlColor(CDC * pDC, UINT nCtlColor)
{
    return (HBRUSH)GetStockObject(WHITE_BRUSH);

}

AliR.

<njoycod...@xxxxxxxxx> wrote in message

news:aadbd5b3-d0b6-4cbb-bdc4-2318ac77b92d@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Thanks for the reply I was able to make it work with CEditView...
But the only problem that I face is changing the background color to
white as I set readonly property  the
background color is grayed out

I do the following to set background color
ON_WM_CTLCOLOR_REFLECT()

HBRUSH CEditViewEx::CtlColor(CDC* pDC, UINT nCtlColor)
{
// TODO: Change any attributes of the DC here

// TODO: Return a non-NULL brush if the parent's handler should not
be called
COLORREF color;
CBrush brush;
brush.CreateSolidBrush(RGB(255, 255,255));
pDC->SetBkColor(RGB( 255, 255, 255 ));

return static_cast<HBRUSH>(brush.GetSafeHandle());

}

Background color appears only to text region and the rest of the
unused view region remains still grey

Am I doing something wrong here

On Jul 29, 8:07 pm, Joseph M. Newcomer <newco...@xxxxxxxxxxxx> wrote:



GetDocument() returns a *pointer* to a CDocument class, and in fact in the
default case
the GetDocument() method already casts it to a pointer of the correct
type.

There is no such thing as a *handle* to a CDocument.
joe

On Tue, 29 Jul 2008 06:57:54 -0700 (PDT), "njoycod...@xxxxxxxxx"
<njoycod...@xxxxxxxxx>
wrote:

HI All ,

Is it possible to get the handle of CDocument in OnInitialUpdate() in
a view derived from CRichEditView ????

I get a debug assertion ....

Joseph M. Newcomer [MVP]
email: newco...@xxxxxxxxxxxx
Web:http://www.flounder.com
MVP Tips:http://www.flounder.com/mvp_tips.htm- Hide quoted text -

- Show quoted text -

.



Relevant Pages

  • Re: CRichEditView doublt
    ... HBRUSH CEditViewEx::CtlColor(CDC * pDC, UINT nCtlColor) ... But the only problem that I face is changing the background color to ...
    (microsoft.public.vc.mfc)
  • Re: CRichEditView doublt
    ... If you want to manage the brush yourself, ... HBRUSH CActivitySummaryDetailView::CtlColor(CDC* pDC, UINT ... HBRUSH CEditViewEx::CtlColor(CDC * pDC, UINT nCtlColor) ... But the only problem that I face is changing the background color to ...
    (microsoft.public.vc.mfc)
  • Re: Making the clientarea of a Dialog black
    ... switch (nCtlColor) ... BOOL CMyDialog::OnEraseBkgnd(CDC* pDC) ... CRect rect; ...
    (microsoft.public.vc.mfc)
  • Change edit control background
    ... I have tried using OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor). ...
    (microsoft.public.pocketpc.developer)
  • Re: XP visual styles and background colors
    ... have the same background color that gradually gets darker to the bottom. ... is fixed in the OnEraseBkgnd routine of the page. ... switch(nCtlColor) ... hBrush = GetStockObject; ...
    (microsoft.public.win32.programmer.gdi)