Istruzione Option Explicit

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

note

The Option Explicit statement is evaluated at run time.


Sintassi:

Option Explicit

Parametri:

warning

Questa istruzione deve essere inserita prima del codice eseguibile del programma all'interno del modulo.


Esempio:


Option Explicit
Sub ExampleExplicit
Dim sVar As String
    sVar = "Las Vegas"
    For i% = 1 to 10 ' Questa riga restituisce un errore runtime
        Rem
    Next i%
End Sub