Option Explicit Statement

වැඩසටහන් කේතයේ සෑම විචල්‍යයක්ම Dim ප්‍රකාශනයකින් නිශ්චිතව ප්‍රකාශ කල යුතු බව විශේෂණය කරයි.

Syntax:

Option Explicit

Parameters:

warning

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


Example:


Option Explicit
Sub ExampleExplicit
Dim sVar As String
    sVar = "Las Vegas"
    i% = 1 සිට 10 සඳහා REM මෙය ධාවනකාල දෝෂයක් මතු කරයි
        Rem
    Next i%
End Sub

Please support us!