↧
TextOut wierd behavior
Ok, thanks. I found some interesting read here about flickering problem.
View ArticleTextOut wierd behavior
borko1980 wrote:Yes, that works, thanks. But now i got child window flickering as i move my mouse over that window, i got some regions drawn beneath text. how to avoid/resolve this?. One possibility...
View ArticleTextOut wierd behavior
Ok, i have made simple test working code that shows flickering. as i move mouse over, from time to time child window "elements" is flickering.I have paste it on pastebin: http://pastebin.com/MwjEgrCh
View ArticleTextOut wierd behavior
Yes, that works, thanks. But now i got child window flickering as i move my mouse over that window, i got some regions drawn beneath text. how to avoid/resolve this?.
View ArticleTextOut wierd behavior
borko1980 wrote: SendMessage(hWnd, WM_PAINT, 0, 0);Replace this with InvalidateRect(hWnd, NULL, FALSE);You can't send WM_PAINT like this. It has to be generated by the system, when the system...
View ArticleTextOut wierd behavior
I got 2 windows, one main and other child. Here is child WndProc relevant pieces:case WM_MOUSEMOVE: { mousePos.x = LOWORD(lParam); mousePos.y = HIWORD(lParam); SendMessage(hWnd, WM_PAINT, 0, 0); return...
View Article
More Pages to Explore .....