AqfwF‖

r5HhA‖Option Explicit Statement

jEDfz‖Specifies that every variable in the program code must be explicitly declared with the Dim statement.

Note Icon

EXG45‖The Option Explicit statement is evaluated at run time.


FVEx2‖Syntax:

Option Explicit

WADQ4‖Parameters:

Warning Icon

DYo4K‖This statement must be added before the executable program code in a module.


EFSA4‖Example:


Option Explicit
Sub ExampleExplicit
Dim sVar As String
    sVar = "Las Vegas"
6U5Jf‖    For i% = 1 To 10 ' This results in a run-time error
        Rem
    Next i%
End Sub