Tagged Questions
The console-output tag has no wiki summary.
9
votes
9answers
7k views
Oracle PL/SQL - tips for immediate output / console printing
I have a number of pl/sql procedures that can take several minutes to run. While developing them, I've added a few print statements to help debug and also provide some feedback and progress ...
7
votes
5answers
2k views
How do I write output in same place on the console?
I am new to python and am writing some scripts to automate downloading files from FTP servers, etc. I want to show the progress of the download, but I want it to stay in the same position, such as:
...
3
votes
1answer
538 views
Output redirection still with colors in PowerShell
Suppose I run msbuild like this:
function Clean-Sln {
param($sln)
MSBuild.exe $sln /target:Clean
}
Clean-Sln c:\temp\SO.sln
In Posh console the output is in colors. That's pretty handy - ...
1
vote
1answer
454 views
QTextStream used for console output
Hey, I'm facing this really annoying problem with QTextStream used for console output.
QTextStream cout(stdout, QIODevice::WriteOnly);
cout.setRealNumberPrecision(1);
cout.setPadChar('.');
// some ...
0
votes
3answers
95 views
How to output Integers using the Put_Line method?
I can't get this program to compile because it doesn't seem to print integer variables along with strings in the Put_Line method. I've looked at source code online and it works when they do it so ...
0
votes
1answer
154 views
MATLAB console output
Say I had a variable called "x" and x=5.
I would like to do:
disp('x is equal to ' + x +'.');
and have that code print:
x is equal to 5.
This is how I am used to doing things in Java, so their ...
0
votes
2answers
673 views
How to disable a .DLL's console output?
I used to use WatiN for my Web Automation project. But, IE looked slow to me. I tried to use WatiN with FF projects, but it seems WatiN with Firefox is not as powerful as WatiN with IE.
Before I ...