Search:

Type: Posts; User: HelpfulPerson

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    9,244

    Thanks, I'll definitely play around with it some....

    Thanks, I'll definitely play around with it some. I've never personally messed with Windows GUI objects, so it will be nice to use that code to set up a base for learning. I hope I can learn more...
  2. Replies
    10
    Views
    9,244

    #include #include #include...

    #include <stdio.h>
    #include <stdlib.h>
    #include <time.h>
    #include <math.h>


    #include <windows.h>


    #define VKEY_IS_PRESSED(vk) ( GetAsyncKeyState(vk) & 0x8000 )
  3. Replies
    10
    Views
    9,244

    I've done that too, I created an SDL GUI to...

    I've done that too, I created an SDL GUI to display pixels where the mouse cursor is on the screen, but I ran into lots of problems with it. First, SDL isn't exactly ideal since when it loses focus...
  4. Replies
    10
    Views
    9,244

    How can I draw directly on the Desktop?

    I've done my research on this, and discovered that my two options are either to hook into the explorer.exe process or create a transparent window. I'd rather not create a transparent window, because...
Results 1 to 4 of 4