SAapi Object : Disconnect Method |
Visual Basic |
---|
Public Function Disconnect( _ ByVal ConnectionId As Long _ ) As String |
Private Sub Disconnect() 'The following example disconnects a specific connection ' to the Quality Center server. Dim sReply As String On Error GoTo err sReply = m_SAClient.Disconnect(12433736) MsgBox sReply Exit Sub err: MsgBox "Program failed:" + err.Description End Sub