i want to make a program that will record keystrokes from another app like notepad and it copy what is written in notepad to the other app. and then using an external text file send each word through it checking for all the ways to spells the words, and lets the user pick which one they want. but here is the first part and i would like for you'll to help with the rest. will this part work.
VB Code:
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) Select Case KeyCode Case vbKeyA SendKeys "a" Case vbKeyB SendKeys "b" Case vbKeyC SendKeys "c" Case vbKeyD SendKeys "d" Case vbKeyE SendKeys "e" End Sub
