AqfwF‖

r5HhA‖Option Explicit Statement

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

FVEx2‖Syntax:

Option Explicit

WADQ4‖Parameters:

warning

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