I am trying to redraw the CHeaderCtrl contained in a CListCtrl and would like to handle WM_PAINT messages. Problem is when I do the control never stops painting. Any help greatly appreciated
Lea Johnson
Posts
-
Problem subclassing CHeaderCtrl OnPaint -
Loadstring Fails on Win98Dear All, I have developed an application with VC++6sp4 on WinNT4sp6 and everything is fine and dandy. The big problem occurs when I compile the same code on a Win98 machine. All calls to Loadstring fail returning an empty string. :mad: I was wondering if anyone else has experienced this behaviour, and if so how to go about fixing it Thanks inadvance Lea
-
Z-order of childrenTo set the Z-Order: SetWindowPos(hWnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE)
-
Problem with cascaded controlsI created a custom control derived from CWnd. I need to cascade many of these on a CFormView. I am able to create and cascade them but when I click on a portion of the top most control which is over another control, the control underneath receives the mouse input and not the top most one. I tried to disable the previous control but I need to receive WM_ messages for all the cascaded controls. I also tried this with a standard CButton class and the same problem occured. Does anyone know how to prevent this behaviour? Thanks in advance