docs

Home All functions Categories

vuMailSlotSend(SlotName, Data, Length, Local)

vuMailSlotSend(*CSTRING,*CSTRING,LONG,LONG), Signed

Description

Sends data to a mail slot in another application, either locally or across the domain.

Parameters

Parameter Data Type Description
SlotName CSTRING(256) The name of the mail slot to send the data to. Can target multiple applications.
Data CSTRING(512) The data to send (may be a STRING, GROUP, or QUEUE).
Length LONG The length of the data being sent.
Local LONG Flag indicating delivery scope: 1 = local machine only, 0 = domain-wide.

Returns

A LONG value:

Example

SlotName = 'Transactions'
Data     = 'Any Data I Want'
Length   = 15
Local    = 1

IF vuMailSlotSend(SlotName, Data, Length, Local)
  MESSAGE('Data sent successfully.')
ELSE
  MESSAGE('Failed to send data.')
END

Notes

Home All functions Categories