Back to Index

 

Server Component Class: CRFramework.VISControls.VISServerControl

Connect()

The Connect method attempts to connect to the BlueSky Integration Studio using the ServerName, UserName, Password and Port properties.  You must set these properties prior to calling the Connect method.

[VB]

Imports CRFramework.VISControls

Dim VIS As VISServerControl

 

VIS = New VISServerControl()

 

VIS.UserName = "administrator"

VIS.Password = "manager"

VIS.ServerName = "localhost"

 

VIS.Connect()

 

 

[C#]

using CRFramework.VISControls;

VISServerControl VIS;

 

VIS = new VISServerControl();

 

VIS.UserName = "administrator";

VIS.Password = "manager";

VIS.ServerName = "localhost";

 

VIS.Connect();

 

 

 


© 2003 - 2007 Relational Solutions, Inc. - All rights reserved