Key Logger (VB.NET)
Yeah, don't change your topic mid-thread. If you're going to ask a new question, start a new thread; otherwise, it keeps the previous replies from making sense. Be courteous of other members.
As for your question, you'd need to use API to catch keypresses outside of your program. Good luck with that.
spyware wrote: Why did you change the topic title and your post?
Listen up folks, this guy posted a thread in which he asked how he should name his "exploit program", or whatever. Needless to say, it was a ridiculous question.
OP, die in a fire.
Stupid joke and unnecessary large image removed - Zeph
I remember when I was looking for a VB.Net keylogger
The most common method I found was to have a timer running and every x amount of time (usually a fraction of a second) check if there's a keydown. In my opinion this is a poor way.. especially when you get people who type really really fast.. as it can skip keys.. and also if they press two keys at once etc.
C++ and Python are the easiest languages for a keylogger that's moderate at minimum, in my opinion anyway.