Is it possible to bitblt on top of everything. I have a form with picture boxes on it, and wish to bitblt a small picture over the entire form, including where the boxes are. Therefore I can not use the forms HDC, and the hdc of 0 doesn't work.
Printable View
Is it possible to bitblt on top of everything. I have a form with picture boxes on it, and wish to bitblt a small picture over the entire form, including where the boxes are. Therefore I can not use the forms HDC, and the hdc of 0 doesn't work.
Use GetDC(GetDesktopWindow). May I add that it could involve subclassing, finding the paint event, and calling it right after that (so the changes show).
Thanks, now how do I clear that screen?
Nevermind, I found a way to do it.