Bullfrog1870
Technical User
I feel foolish for asking but what am I missing? I'm simply trying to set a variable equal to a single character.
Dim myChar As Char
myChar = 'A' 'This gives "Expression Expected" error
myChar = "A" 'Option Strict is on so this won't work
How should I be doing this?
Is it possible to initialize when I Dim it?
Thanks!
Dim myChar As Char
myChar = 'A' 'This gives "Expression Expected" error
myChar = "A" 'Option Strict is on so this won't work
How should I be doing this?
Is it possible to initialize when I Dim it?
Thanks!