Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASCII

Status
Not open for further replies.

Blobishthing

Programmer
Feb 16, 2002
23
0
0
AU
what is the ascii code for the arrow keys
thanx in advance
 
Arrow keys are not characters.
If you want to use them in a KeyDown or KeyUp event then just discover the KeyCodes yourself.
Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
MsgBox "KeyDown=" & Cstr(KeyCode)
End Sub Generate Forms/Controls Resizing/Tabbing Class
Compare Code (Text)
Generate Sort Class in VB or VBScript
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top