show/hide this revision's text 2 Links

I'm going to disagree with RS Conley (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), will wish it had never been introduced in VB4, and will be delighted to be able to turn it off with switch on Option Strict.

Occasionally it might be useful

It's occasionally better to have use one small module without Option Strict, if the alternative is to avoid lots of complicated reflection code. But that's the module should be kept smallexception that proves the rule.

show/hide this revision's text 1

I'm going to disagree with RS Conley (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), 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.