OnReceiveText  AppCom

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)

Parameters

textThe text sent.
paramThe user parameter sent.
idSrcThe 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)
}
SECCIA Documentation - Copyright © 2001-2009 Sylvain Seccia