The OnReceiveText event is called when the application receives a message from another Seccia application through an AppCom object.
Syntax
AppCom.OnReceiveText(
String text,
Integer param,
Integer idSrc)
String text,
Integer param,
Integer idSrc)
Parameters
| text | The text sent. |
|---|---|
| param | The user parameter sent. |
| idSrc | The ID of the AppCom object sender. |
Return value
The OnReceiveText event has no return values.
Example
message Application.AppCom.OnReceiveText(String text, Integer param, Integer idSrc)
{
MessageBox(text+", "+param+" from "+idSrc)
}
{
MessageBox(text+", "+param+" from "+idSrc)
}