Arrow Keys in VB Epress

What is the Code to use the Arrow Keys on a keyboard in VB Epress
[65 byte] By [RocketRick] at [2007-12-23]
# 1
You will need to override the KeyPress event on your control. You can then filter the Keys argument for the arrow keys. Take a look here: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformscontrolclasskeypresstopic.asp
TimothyNgMSFT at 2007-8-30 > top of Msdn Tech,Visual Basic,Visual Basic Language...
# 2

system.Windows.Forms.Keys.Up()

Keys.Down()

Keys.Left()

Keys.Right()

DMan1 at 2007-8-30 > top of Msdn Tech,Visual Basic,Visual Basic Language...