C++
if u want to learn c++ go to http://www.learncpp.com/
JAYSSJ11- “I’d rather be hated for who I am, than loved for who I am not.”
i do know basics of c++, what i am unable to understand is how to use keyboard input..i’ve been to msdn and it wasn’t of much help..need help on keyboard hooks and how to create dlls and link them to c++ code..
anything that helps get keyboard input and saves to a file and it would be more helpful if i could know how to send email attachments from c++..
While I believe that ‘those with not-so-legit intentions’ must code for themselves and obviously I’m not going to write anything (bad or good, but especially bad) for you, I suggest that you read the documentation for the terms you just used. Maybe you want to look into GetKeyState() as well.
Again I recommend you to do it yourself and not bind anyone to whatever you have in mind.
Remember:
[quote=HackThis!!]This site does not encourage or condone any illegal activity, or attempts to hack into any network where they do not have authority to do so.[/quote]
Good luck.
Sorry if that sounded stupid.
All your karamas are belong to us.
I might have not understood you properly, but here’s a function to get the key pressed.
```#include
include <conio.h>
using namespace std;
int main() {
char c = getch();
// Use the variable c for whatever you need. If you need to compare it with special keys, use ASCII values.
return 0;
}```
Tell me if that’s what you was looking for.