BasicNoUIObjSendAppSyncMessage Method |
Send the app synchronize message from the IDE to remote NoUI or send the !app message from the NoUI to the remote IDE.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxpublic void SendAppSyncMessage(
string data,
int id
)
Public Sub SendAppSyncMessage (
data As String,
id As Integer
)
public:
void SendAppSyncMessage(
String^ data,
int id
)
Parameters
- data String
-
Send this data to the remote NoUI/IDE.
- id Int32
-
Ignored for app messages.
For !app messages this is the target remote IDE.
(Use -1 to broadcast to all IDEs.)
RemarksSendAppSyncMessage is useful for sending application specific data between the SendAppSyncMessage IDE and NoUI.
Example
Send app synchronize message to the remote:
BasicNoUICtl1.SendAppSyncMessage(data, 0);
BasicNoUICtl1.SendAppSyncMessage(data, 0)
BasicNoUICtl1->SendAppSyncMessage(data, 0);
See Also