Here's a weird glitch I've never run across before:
That code runs just fine, and the Enum variables all report as Long types. I guess the single character typing is ignored.
Code:
Option Explicit
Enum test
a$
b$
c$
End Enum
Private Sub Form_Load()
Debug.Print c, TypeName(c)
End Sub
That code runs just fine, and the Enum variables all report as Long types. I guess the single character typing is ignored.