Collabora Office 24.04 Help
Definieert dat elke variabele die gebruikt wordt in de programmacode, expliciet moet worden gedeclareerd met de Dim-instructie.
Option Explicit
Option Explicit
Sub ExampleExplicit
Dim sVar As String
sVar = "Las Vegas"
For i% = 1 To 10 ' Dit resulteert in een run-time fout
Rem
Next i%
End Sub