Mr Ekted wrote: |
Using the Win32 API, you can call GetDC(0) to get the HDC for the entire screen. Then all normal device context calls write an top of anything.
SelectObject() SetTextColor() SetBkColor() SetBkMode() SetTextAlign() TextOut() DrawText() etc. Note that if you write on top of windows, they will be left with junk on them. This is not considered to be a very Windows-friendly method. I would recommend creating a little window to put your information in. It doesn't have to have a border, a title bar, a menu, etc. When this window closes, windows behind it will redraw as normal. |