i am useing VB.Net, and i am trying to send key strokes to the system. this is what i'm useing:
System.Windows.Forms.SendKeys.Send("j")
i have also tried:
System.Windows.Forms.SendKeys.SendWait("j")
the problem i'm having is that some of the keys i want to send dont' actually get sent. instead i get a "beep" sound from the system.
i thought the "beep" sound ment that i am sending too many keys at one time to the system. so i am sending keys one at a time with a delay function between each key. this still does not work. sometimes the keys get sent with no problem, then sometimes only half or a fragment of the keys get sent, or sometimes none at all.
is there a more reliable way to send keys?
thanks.
System.Windows.Forms.SendKeys.Send("j")
i have also tried:
System.Windows.Forms.SendKeys.SendWait("j")
the problem i'm having is that some of the keys i want to send dont' actually get sent. instead i get a "beep" sound from the system.
i thought the "beep" sound ment that i am sending too many keys at one time to the system. so i am sending keys one at a time with a delay function between each key. this still does not work. sometimes the keys get sent with no problem, then sometimes only half or a fragment of the keys get sent, or sometimes none at all.
is there a more reliable way to send keys?
thanks.