Need help with something . Please FAST
How do i make a spammer that he can type the "<" or ">" ?
please i really need help 
Why the spammer would not type those?
idk, it will put : "," or "." not "<",">"
your keyboard layout maybe
Uh.. could you post a video or something? Not too sure what's happening..
Not possible in vb, try C++ section maybe. [/srcsm]
or post a more specific question/details - people aren't generally here to hand out complete code like that. Do you have a codebase started or is this the research stage? ....post code and we'll give you tips about the specific api you're using..
SendKeys has special syntax for CTRL/ALT/Shift keys, so you need to send the key with shift pressed as well.
"+(,)" would be Shift + ,
"^(,)" would be CTRL + ,
"%(,)" would be ALT + ,
You may need to use < instead of , not sure though. Didn't test, this is just from looking at the MSDN page, it says all this info on it.