not all keywords are reserved names(?)

Viewed 39

I read somewhere that keywords are special words that are reserved and used by the compiler to determine the structure of your code.

So I tried to test some keywords officially found here and here, with surprising results:

Dim Me as String ' systax error
Dim Len as String ' syntax error
Dim Mid As String '  legal
Dim InStr As String ' legal
Dim Time As String ' legal

Can I conclude that not all keywords are reserved (in VBA)?

Furthermore, is it correct to assume that "InStr" is a keyword while "InStrRev" is not a keyword just because the second is not officially listed as keyword?

0 Answers
Related