Re: CMenu leaving unpainted area
You may want to try calling UpdateWindow() or RedrawWindow() to see if that
helps. It sounds like the window doesn't think it needs to redraw. It
might be a driver problem. I have that sort of problem with Visual Studio
2005 all the time on Vista (doesn't redraw the code/MDI window so I have to
click on another tab then click back to see the code again after something
runs over the top of it).
Tom
"mike" <nospamplease.com> wrote in message
news:%23VNnWQq2HHA.2064@TK2MSFTNGP03.phx.gbl...
Sorry, I meant to say CTreeCtrl on a CFormView.
"AliR (VC++ MVP)" <AliR@online.nospam> wrote in message
news:p0Gui.13404$eY.4@newssvr13.news.prodigy.net...
Something somewhat unrelated. Why do you have a CTreeView in a CFormView?
Either use a CTreeView to begin with, or if you view is a CFormView then
use a CTreeCtrl.
AliR.
"mike" <nospamplease.com> wrote in message
news:Opek19n2HHA.4400@TK2MSFTNGP06.phx.gbl...
I have a CTreeView on a CFormView with a list of items. I have an
NM_RCLICK handler to popup a CMenu box. I successfully right click on an
item and the menu is shown. The problem is when an item on the menu is
click and the menu is destroyed, there is an area to the right of the
tree item that is not repainted to the treeview background color. ie the
area is gray not white. The text portion of the item is repainted. I've
tried invalidating the tree view area but it doesn't seem to be
repainting.
CMenu bar;
if ( bar.LoadMenu(IDR_MENU1) )
{
CMenu & popup = *bar.GetSubMenu(0);
ASSERT(popup.m_hMenu != NULL);
popup.TrackPopupMenu(TPM_RIGHTBUTTON,point.x, point.y,
AfxGetMainWnd());
}
m_ProjectTree.Invalidate();
If I do this, the form area is painted (gray) but the treeview area is
not except for the selected item.
Invalidate();
m_ProjectTree.Invalidate();