May 13, 2002 - Turning Off Printing | WebReference

May 13, 2002 - Turning Off Printing

Yehuda Shiran May 13, 2002
Turning Off Printing
Tips: May 2002

Yehuda Shiran, Ph.D.
Doc JavaScript

The print statement is enabled by default in the JScript .NET command-line compiler, jsc.exe. You can disable it by using the /print- option. When there is no console to print to (for example, Windows GUI), the print statement will silently fail. Output from the print statement can be redirected to a file from the command line. If you want to make sure redirected output is correctly formatted, include the "\r" combination at the end of each printed line. It does not affect the way lines are displayed on the console.

Here is an example for the print statement, with a few escape sequences:

  print("Student: \t" + student + "\n\rGrade: \t" + grade);
will yield the following console output:

  Student:             John
  Grade:       98
To learn more about JScript .NET, go to Column 108, JScript .NET, Part II: Major Features.