VB Code:
  1. If KeyAscii < 48 Or KeyAscii > 57 Then 'sets limits for characters
  2.     Select Case KeyAscii 'sets case for the keys
  3.         Case 8
  4.     Case Else
  5.         KeyAscii = 0
  6.     End Select
  7.     End If

for this what is case 8??