View Full Version : Escaping new line in Print
huracan
11-24-2009, 01:15 PM
I apologize if this is obvious or has been rehashed to death but, how do I suppress the newline in the output window as a result of a "Print" call? I'd like to do some post-processing of the output and so would like many "Print" calls to all output to the same line.
NinjaTrader_Josh
11-24-2009, 01:18 PM
Just call Print() once for every line you want. If you want multiple elements in the print just concatenate them together.
Print(something + " " + somethingelse);
huracan
11-24-2009, 01:50 PM
Josh:
Thanks for the quick reply (even though I don't like the answer). :eek:
laserwolf
11-16-2010, 03:21 AM
Just call Print() once for every line you want. If you want multiple elements in the print just concatenate them together.
Print(something + " " + somethingelse);
Can someone provide a real answer to this question?
thx