Previous Topic

Next Topic

Inhoudsopgave

Book Index

Isah Script Fundamentals

General Guidelines

Option Explicit

Sub Main()

Dim Text

Text = "Hello"

MsgBox Text

End Sub

This way you will never leave out the declaration of a variable. Please note that the Option Explicit statement must appear in a script before any other statements.

'This procedure performs a multiplication

Please Note: The apostrophe (') does not work when it concerns system scripts. In that case, the Rem keyword will be used to include explanatory remarks.

MsgBox "Script engine version: " & ScriptEngineMajorVersion & "." & ScriptEngineMinorVersion

See Release Notes.

Tips

In this folder

How To ...