Firefox with spell checker is your friend.
Printable View
Firefox with spell checker is your friend.
Whoa I didn't realise that (blank) page still existed. Thought the mods would've taken it down after my... bad behaviour. Maybe I should actually write something about myself.
BTW, Queatrix, I think you have to be logged in to CBoard to access http://cboard.cprogramming.com/member.php?u=14571
[edit] Also, all of the download links from your website link to filenames with backslashes in them, which turns into:
You need to use forward slashes.Code:http://queatrix.awardspace.com/archive%5CRecorder%5Creadme.txt
Also, from http://queatrix.awardspace.com/archi...der/readme.txt:
"my" -> "by". :)Quote:
Program made my Queatrix.
Also, this code, from http://queatrix.awardspace.com/archi...r/recorder.cpp
could be justCode:#define KEYDOWN(vk_code) ((GetAsyncKeyState(vk_code) & 0x8000) ? 1 : 0)
#define KEYUP(vk_code) ((GetAsyncKeyState(vk_code) & 0x8000) ? 0 : 1)
because you don't assign variables to the result, you just check it for truth. (1==1 returns a true value, usually 1, but it can be something else.)Code:#define KEYDOWN(vk_code) (GetAsyncKeyState(vk_code) & 0x8000)
#define KEYUP(vk_code) (GetAsyncKeyState(vk_code) & 0x8000)
BTW, thanks for that recorder program . . . it's given me an idea. :) [/edit]
>> BTW, thanks for that recorder program . . . it's given me an idea.
Whats that?