Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
325 views

Invalidate into own bitmap

I wish to off-screen render a Control to some bitmap so that I have quick access to it. Unfortunately Control.DrawToBitmap seems to draw the entire control on which it is called including all it's ...
6
votes
3answers
166 views

Is there something special about using BeginPaint/EndPain and not GetDC/ReleaseDC in responce to WM_PAINT message?

One can use GetDC/ReleaseDC to draw in client area of window. But in responce to WM_PAINT message one have to use BeginPaint/EndPaint. Is there something special about this?
6
votes
1answer
427 views

How can I draw an animation on a transparent window using Windows API?

I'm trying to draw an animation on a window with a transparent background using Windows API. The problem is that I can't delete the previous drawing from the window. I set the following parameters: ...
3
votes
5answers
108 views

c++ programing efficiency

Here is some code that I copied from the Microsoft Developer Network http://msdn.microsoft.com/en-us/library/dd162487(v=VS.85).aspx LRESULT APIENTRY WndProc(HWND hwnd, UINT message, WPARAM wParam, ...
2
votes
0answers
180 views

WM_PAINT, Java and capturing hidden windows

First a disclaimer, I'm a Java programmer and have almost no idea about the Windows API. So please bear with me. My goal is to use Java to capture a hidden window. My target platform is Windows. I do ...
1
vote
2answers
93 views

window isn't showing line made in WM_PAINT

I'm kinda new to this area, so.. I made the following code, as far as i understand, in WM_PAINT i'm creating a line, however i can't see this line, because the window isn't displaying at all. i have ...
1
vote
1answer
354 views

Not receiving WM_PAINT message when returning from Security Screen (Ctrl+Alt+Del) in Windows7

I need to detect the closing of the security screen, this is the full screen that appears when a user presses Ctrl+Alt+Del under windows. In Xp my application receives an wm_paint message when this ...
1
vote
4answers
5k views

SetWindowsHookEx in C#

I'm trying to hook a 3rd party app so that I can draw to its screen. Drawing to the screen is easy and I need no help with it, but I seem to be having issues with using SetWindowsHookEx to handle ...
0
votes
1answer
20 views

Framerate of WM_PAINT

Could anybody tell me please how can I get framerate of WM_PAINT message in frames per second? I'm trying to make a software renderer, and framerate is very important for debugging.
0
votes
1answer
202 views

Handling WM_PAINT in a Subclassed CStatic Control

I created a custom control whose class has CStatic as base class. Currently I handle the drawing using WM_PAINT event. But there is a strange behavior. When I re-enable the window after disabling it ...
0
votes
0answers
35 views

WM_PAINT issue in Vista

I have an application written on win32. At 200 dpi in vista, 1/4 the of the application window goes beyond the screen when its launched. When the window is dragged inside the screen the right part of ...
0
votes
1answer
275 views

Windows 7 sends unnecessary WM_PAINT messages

I have a question about strangely originating WM_PAINT messages sent to my window. It happens on Windows 7 and doesn’t happen on Windows XP. Details In my program, I have a timer that triggers GUI ...
0
votes
3answers
378 views

On Win32, can I disable painting of a window for a period of time?

Is there a function that will freeze window repainting for some time, while I do changes to the layout of my dialog?
0
votes
3answers
306 views

win32: WM_PAINT calls but not supposed to be!

I have a problem with WM_PAINT. Basically I want WM_PAINT to be called after a user WM_COMMAND, but for some reason it's called anyway in the main function. case WM_PAINT: { createFont(); ...
0
votes
1answer
253 views

Winforms Flickering While Drawing Image on Taskbar

Right now I'm drawing a small 16x16 image on the title bar of my window. It works nicely, except for an obnoxious flicker that I cant figure out how to get rid of. I'm simply drawing the image like ...
0
votes
1answer
360 views

Intercepting a WM_PAINT message and acting upon this

I'm trying to intercept/hook the WM_PAINT message of the desktop in C++. I'm currently drawing with the desktop handle, my only problem is that I'm not in sync so it might flicker. What I basically ...