Quote:
Originally Posted by lolepicfailimo
My question is, how would I go about coding a HUD? The stats have to be fixed on the table and must not be affected by mouse clicks/moves at all. It was suggested to me that I use API hooking, i.e. find the message that is fired when the table window is moved, then hook into that and update my stats window accordingly. I'm wondering if there are other, easier ways that don't involve API hooking?
Look into
Layered Windows.
Quote:
I was thinking of going with C#, even though I hardly know it, because I will have to access windows and that all the time and I'm assuming a Microsoft language should make that pretty easy for me. What do you think about Java? I know it better, but if it's more complicated to use Java on that I might as well learn C#. What language would you use/suggest for coding a HUD?
C/C++ will let you call the Win32 stuff directly.
Juk