|
|
|
|
|
- Default events
- Events of the stream associated with the Conference control
- Event to the request the connection of a new stream
Conference control events
The following events appear by default in the WINDEV code editor: | | Event | Runtime condition |
---|
Initializing the Conference control | Executed when the window is opened. * |
(*) By default, the "Initialization" event of each control is executed according to the order in which the controls were created in the window. To modify this runtime order: - On the "Window" tab, in the "Order" group, click "Initialization".
- In the window that appears, use the arrows on the right to change the order in which the controls are initialized.
Events of the stream associated with the Conference control WINDEV also allows you to see the stream-specific events associated with the Conference control. To see these events, select the option "Code of associated stream" in the context menu of the Conference control. | | Event | Runtime condition |
---|
Initializing (*) | Executed when the window is opened. | Connection request of new stream | Executed when a new stream is detected. | End of connection | Executed when the correspondent of the stream disconnects. |
For more details, see WINDEV and the streams. Event to the request the connection of a new stream The event "Request for connecting a new stream" is run when a new stream attempts to connect to the current application. This event takes one parameter. To handle this parameter, a procedure is automatically declared in the "Request for connecting a new stream" event. This procedure uses the following syntax: PROCÉDURE NewStream(nStreamID)
Where "nStreamID" is an integer variable corresponding to the identifier of the detected stream.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|