Originally posted by bitsy
Apparently letters that can evaluate as numbers pass VB's isNumeric function. Such as "e"
What do you mean?

This produces "I'm not"

VB Code:
  1. If IsNumeric("e") Then
  2.     MsgBox "I'm Numeric"
  3. Else
  4.     MsgBox "I'm not"
  5. End If