I'm going to disagree with [RS Conley][1] (very unusual). My favourite VB6 gurus - Francesco Balena, Dan Appleman - all disliked VB6's automatic conversion, and are in favour of `Option Strict` in .NET. Many experienced VB6 programmers will know automatic conversion as "evil type coercion" ([pdf][2]), will wish it had never been introduced in VB4, and will be delighted to be able to turn it off with `Option Strict`. Occasionally it might be useful to have one small module without Option Strict, if the alternative is lots of complicated reflection code. But the module should be kept small. [1]: http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers/222693#222693 [2]: http://vb.mvps.org/articles/pt199511.pdf