Difference between revisions of "MC-Basic:SENDDATA$"
m (Text replace - "Version 4.5.3 and higher" to "Since Version 4.5.3") |
|||
Line 41: | Line 41: | ||
|SEE ALSO= | |SEE ALSO= | ||
* [[Axystems:MC-Basic:SENDDATA|SENDDATA]] | * [[Axystems:MC-Basic:SENDDATA|SENDDATA]] | ||
− | * [[ | + | * [[MC-Basic:PROMPT|PROMPT]] |
}} | }} |
Revision as of 08:39, 22 May 2014
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"