Option explicite dans VBA

VBA Declaring Variables Implicit And Explicit Declaration

If a code module does not contain Option Explicit at the top of the module, 
then the compiler will automatically (that is, "implicitly") create variables for you 
when you use them. They will default to variable type Variant.
Mappy Show