Protocols/MSNP/Activities/SDK/Techref/Objectmodel/Objects/Channel/Events/OnRemoteAppClosed: Difference between revisions
Jump to navigation
Jump to search
Animadoria (talk | contribs) (Created automatically by Anima Importer) |
Animadoria (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<!-- Generated @ 08/12/2022 23:45:54 +01:00 using Anima's CHM converter based on techref/objectmodel/objects/channel/events/OnRemoteAppClosed.htm --> | <!-- Generated @ 08/12/2022 23:45:54 +01:00 using Anima's CHM converter based on techref/objectmodel/objects/channel/events/OnRemoteAppClosed.htm --> | ||
{{Protocols/MSNP|section=Activities}} | {{Protocols/MSNP|section=Activities}} | ||
__NOTOC__= | __NOTOC__= [[Protocols/MSNP/Activities/SDK/Techref/Objectmodel/Objects/Channel/Index|Channel]]Channel</a>.OnRemoteAppClosed Event = | ||
Fires when the remote application has closed. | Fires when the remote application has closed. | ||
VBScript Syntax | === VBScript Syntax === | ||
<div class="clsCodeStd"> | <div class="clsCodeStd"> | ||
Line 16: | Line 16: | ||
</div> | </div> | ||
JavaScript Syntax | === JavaScript Syntax === | ||
<div class="clsCodeStd"> | <div class="clsCodeStd"> | ||
Line 26: | Line 26: | ||
</div> | </div> | ||
Remarks | === Remarks === | ||
After the remote application closes, the local application will remain open until the user closes it. During that time, and at any other time when ConnectionType is in the Disconnected state, you may want to disable or hide controls that send data to the remote user. | After the remote application closes, the local application will remain open until the user closes it. During that time, and at any other time when ConnectionType is in the Disconnected state, you may want to disable or hide controls that send data to the remote user. |
Revision as of 00:52, 13 August 2022
ChannelChannel</a>.OnRemoteAppClosed Event
Fires when the remote application has closed.
VBScript Syntax
function Channel_OnRemoteAppClosed() ' Remote application is shutting down; game over End Function
JavaScript Syntax
function Channel_OnRemoteAppClosed() { // Remote application is shutting down; game over }
Remarks
After the remote application closes, the local application will remain open until the user closes it. During that time, and at any other time when ConnectionType is in the Disconnected state, you may want to disable or hide controls that send data to the remote user.