Basic.Version$ (Property)

Syntax Basic.Version$
Description Returns a String containing the version of Basic Control Engine.
Comments This function returns the major and minor version numbers in the format major.minor.BuildNumber, as in "2.00.30."
Example This example displays the current version of the Basic Control Engine.
Sub Main()
    MsgBox "Version " & Basic.Version$ & " of Basic Control Engine is running"
End Sub