Provides access to system variables based on the requested numeric argument.
sValue = object.brSystem( iNum)
| Parameter | Description |
|---|---|
| sValue | The return value is a String data type that is the status information returned. |
| object | An object variable that represents a clsD3Connection object. |
| iNum | A Long data type specifying the system variable number. See the D3 Reference Manual for information. |
Using an RPC connection, some system values are evaluated on the client.
Using an ODBC connection, the request is implemented on the server.
Sub Main()
Dim oEnv As New clsD3Environment
Dim oConn As clsD3Connection
Set oConn = oEnv.brOpenConnection("ODBC", "production”)
MsgBox "System Identification: " & oConn.brSystem(100)
oEnv.brCloseConnection oConn
Set oEnv = Nothing
End Sub
system