MC-Basic:REDIRECTSTDOUT$

From SoftMC-Wiki
Revision as of 16:01, 13 December 2010 by Arwiebe (talk | contribs) (Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= RedirectStdOut$'' <task name>'' NewStdOut=<''es number''> |AVAILABILITY= Versions 3.7.x and higher |DESCRIPTION= Redirects the printouts from…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Redirects the printouts from the parent entry station of a task to the specified entry station. The ES number can be:
       1 – Ethernet
       2 – DPRAM
       3 – Virtual Entry Station
       4 – Etherent2

Syntax

RedirectStdOut$ <task name> NewStdOut=<es number>

Availability

Versions 3.7.x and higher

Type

<task name>  : String

<es number> : Long

Scope

Task or Terminal

Examples

RedirectStdOut$  “Task1.prg”  NewStdOut=1

Or

Common Shared Str1 as String

Str1 = “Task1.prg”

RedirectStdOut$  Str1  NewStdOut=1

See Also