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"
    For i% = 1 to 10 REM This results in a run-time error
        Rem
    Next i%
End Sub

Please support us!