MC-Basic:SENDDATA$

From SoftMC-Wiki
Revision as of 16:00, 13 December 2010 by Arwiebe (talk | contribs) (Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= SendData$ ''<task name string> <string message>'' |AVAILABILITY= Version 4.5.3 and higher |DESCRIPTION= Sends a string to a task to send data…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Sends a string to a task to send data to a prompt command.

Syntax

SendData$ <task name string> <string message>

Availability

Version 4.5.3 and higher

Type

<task name string>: String

Scope

Task or Terminal

Limitations

The task must exist.

Examples

SendData$ “task1.prg” "5,2"

Or

Dim shared TaskName as string = “task1.prg”

SendData$ TaskName "5,2"

See Also