Difference between revisions of "MC-Basic:SENDDATA$"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:SENDDATA$ to MC-Basic:SENDDATA$: Global renaming of Axystems: namespace into (Main):)
 
Line 1: Line 1:
 +
{{Languages|MC-Basic:SENDDATA$}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=

Latest revision as of 03:24, 28 April 2017

Language: English  • 中文(简体)‎

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

Syntax

SendData$ <task name string> <string message>

Availability

Since Version 4.5.3

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