sorry, i never answered your original question: In DBP there is no such thing as Option Explicit - and it is very much needed IMHO! One var spelling mistake and whammo-you have a new variable -yuck
As far as Option Strict, in VB it means no implicit type conversion can take place, the type conversion has to be explicitly written in code. So you can't just mix and match nums and strings all willy nilly and get a result - a dbp example would be the PRINT statement. you could say:
intMyVar as Integer=10
print intMyVar
but an option strict setting would disallow this as the conversion needs to be explicit not implicit (implied) so the print line would need to read:
print str$(intMyVar)
In other words PRINT the return value of the STR$ function which is a string.
Neither O-Explicit or O-Strict is available in DBP but from my experience in VB, and especially vb.net, it would be a welcomed addition - IMHO
-RUST-