QUOTE (Kaibamanjrs @ Aug 4 2009, 07:28 PM)

Alright, this is the first time I have tried doing this.
I want to select a window(or process I have open), give it focus, and send it some keys as if I was typing something. I am a little stumped though. How would I access these windows?
I'm not sure hat you mean with 'to select a window' but to make your keyboard type something use this:
CODE
My.Computer.Keyboard.SendKeys( something here )
That 'something here' could be a string to type ("hello" would let your keyboard type hello) or a key (chr(Keys.Enter) would make it seem like you pressed enter).