Description (clsServer)
Note
This feature will be removed in the next version of Microsoft SQL Server. Do not use this feature in new development work, and modify applications that currently use this feature as soon as possible.
The Description property of an object of ClassType clsServer contains the server description.
Data Type
String
Access
Read/write
Example
The following code example prints the Description property of an object of ClassType clsServer to the Debug window.
Dim dsoServer As New DSO.Server
' Connect to the local Analysis server.
dsoServer.Connect "LocalHost"
' Print the Description property to the Debug window.
Debug.Print dsoServer.Description