PDA

Click to See Complete Forum and Search --> : The KeyAscii Function


amig0w
Jan 24th, 2000, 11:26 AM
Sub Text1_KeyPress (KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys "{tab}"
KeyAscii = 0
End If
End Sub

In the coding avobe the number 13 relates to the Enter key. I'd like to know some more (all if possible) numbers that relate to the other keys.. Thanx!

LG
Jan 24th, 2000, 11:36 AM
Hi.
You can find all characters in Help. Look for "ASCII character set"

Larisa