LibreOffice 24.2 Help
প্রোগ্রাম কোডে বিদ্যমান প্রতিটি ভেরিয়েবল অবশ্যই Dim স্টেটমেন্টের মাধ্যমে ডিক্লেয়ার করা হবে তা উল্লেখ করে থাকে।
Option Explicit
This statement must be added before the executable program code in a module.
Option Explicit Sub ExampleExplicit Dim sVar As String sVar = "Las Vegas" i% = 1 to 10 REM রান-টাইম ত্রুটি প্রদান করে Rem Next i% End Sub