brVersion property

Returns the version of the D3 ODBC Class Library (ODBC Only).

Syntax

sValue = object.brVersion

Parameters

Parameter Description
SValue The return value is a String data type indicating the version of the library in the format x.x.x, where x.x.x is the current revision.
Object An object variable that represents a clsD3Environment object.

Example

Sub Main()
   Set oEnv = New clsD3Environment
 
   ' Using text boxes
   txtVersion.Text = oEnv.brVersion
   txtCopyright.Text = oEnv.brCopyright
   txtDescription.Text = oEnv.brDescription
   txtType.Text = oEnv.brType
 
   Set oEnv = Nothing
End Sub