D
Doug Hill
Please, Microsoft, update Option Explicit
Option Strict barks at late binding. We love late
binding. So Option Strict flags too many things.
Option Explicit is misleading.
It allows
Dim LastName
rather than forcing
Dim LastName as string
Option Explicit should force the data type.
Option Explicit should also force functions to be
delared with a return data type.
The reason I'm harping is I just reviewed a Jr programmers
code and the code was full of Dim variables without data
types.
Option Strict barks at late binding. We love late
binding. So Option Strict flags too many things.
Option Explicit is misleading.
It allows
Dim LastName
rather than forcing
Dim LastName as string
Option Explicit should force the data type.
Option Explicit should also force functions to be
delared with a return data type.
The reason I'm harping is I just reviewed a Jr programmers
code and the code was full of Dim variables without data
types.