This event is triggered before Reflection disconnects from the host.
This example opens a dialog box that prompts to choose whether to disconnect when the user disconnects from a session.
'To run this sample, copy it to the ThisTerminal code window
Private Function Terminal_UserDisconnecting(ByVal sender As Variant, ByVal ConnectionID As Long, ByVal connnectionType As Attachmate_Reflection_Objects_Emulation_OpenSystems.ConnectionTypeOption, ByVal connectionSettings As Variant) As Boolean
If MsgBox("End this session?", vbYesNo) = vbYes Then
Terminal_UserDisconnecting = True
Else
Terminal_UserDisconnecting = False
End If
End Function