

|
|
Server Component Class: CRFramework.VISControls.VISServerControl
Close()
The Close method disconnects the currently active connection.
[VB]
Imports CRFramework.VISControls
|
Dim VIS As VISServerControl |
|
|
|
VIS = New VISServerControl() |
|
|
|
VIS.UserName = "administrator" |
|
VIS.Password = "manager" |
|
VIS.ServerName = "localhost" |
|
|
|
VIS.Connect() |
|
' Do some stuff |
|
VIS.Close() |
[C#]
using CRFramework.VISControls;
|
VISServerControl VIS; |
|
|
|
VIS = new VISServerControl(); |
|
|
|
VIS.UserName = "administrator"; |
|
VIS.Password = "manager"; |
|
VIS.ServerName = "localhost"; |
|
|
|
VIS.Connect(); |
|
// Do some stuff |
|
VIS.Close(); |
© 2003 - 2007 Relational Solutions, Inc. - All rights reserved