Quantcast

Jump to content

Welcome to GameOn365
Register now to gain access to all of our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, post status updates, manage your profile and so much more. If you already have an account, login here - otherwise create an account for free today!

brarei200

brarei200

Member Since 23 Dec 2010
Offline Last Active Jan 21 2011 04:31 PM
-----

#2531 Your PC Specs

Posted by brarei200 on 15 January 2011 - 10:52 AM

Mine is too crappy but I am currently in the process of building a sweet set up, I have to go get the info haha Ill be sure to update this when I get it.


I just got this computer on Black Friday for $600 along with a monitor that is 24inches HD! There amazing! Only thing bad about it which doesn't bother me is that the graphics card isn't too hot lol...I don't play PC games so what ever, it plays HD videos, I'm fine :turned:

Posted Image


#2424 [VB] SendKeys

Posted by brarei200 on 23 December 2010 - 05:03 PM

You can send keyboard keys programming by using "SendKeys", this tutorial is just a quick tutorial since I don't know how to use it that great...

Step 1 - Create a Project
Step 2 - Create a button on your GUI
Step 3 - Double click the button
Step 4 - Type this code below (it opens notepad)

Process.Start("Notepad.exe")

Step 5 - Enter this code below (sends the keys "abcd" to notepad and demostrates how to use non-letter/number keys (like enter, you need to include the brackets {})

SendKeys.Send("abcd")
SendKeys.Send({Enter}) 

Step 6 - Done
Step 7 - This tutorial isn't to useful but there's much more you can do with SendKeys...