1
vote
6answers
65 views
oracle pl/sql bug: can’t put_line more than 2000 characters
Has anyone else noticed this phenomenon where dbms_output.put_line is unable to print more than 2000 characters at a time?
Script is:
set serveroutput on size 100000;
declare
…
5
votes
2answers
89 views
C++ Redirect Output
Is there a way to redirect c++ output inside the code?
The situation is this, I am using some external .cpp and .h files which use printf's to put warnings to console. I wish to re …
0
votes
1answer
24 views
How to set output path in a Qt project
After building, Qt Creator puts my output exe in folder "Debug". I want to change the output folder by adding output path to the .pro file. Any idea?
-1
votes
4answers
205 views
What does an upside down question mark mean in the output in C?
Hi,
I get an upside down question mark as an output from of of my function, what does it mean exactly?
0
votes
2answers
20 views
Not giving correct output of external batch script C#
I need the program to give the output of the batch script, and at the moment it's just printing
System.IO.StreamReader
and it should be printing whatever the batch script says
…
0
votes
2answers
25 views
Redirect window of command line tool to your app (Windows)
Hello,
is there a way (on Windows XP+) to redirect the output of a window created by a process created with e.g. CreateProcess to a window of your own program?
I'd like to make a …
1
vote
2answers
79 views
LaTeX output does not update
I have just begun using LaTeX. I am working in Windows and am using TeXnicCenter as my editor. When I build and output, having the following code:
\documentclass{article}
\begin{ …
0
votes
0answers
33 views
Excel VBA - Recursively list files and output to csv
Hi guys,
I've got a problem with my VBA (you guessed it).
I took code from this post:
vbaexpress.com/kb/getarticle.php?kb_id=405
and added in:
wilmott.com/messageview.cfm?catid= …
1
vote
1answer
108 views
Visual Studio 2008 Debug Window to display timestamp?
The title says it all. I want to be able to see a time stamp in the beginning of every trace in the debug window in Visual studio.
[Time stamp here] The thread 'Win32 Thread' ( …
1
vote
2answers
46 views
Enable bash output color with Lua script
I have several Lua scripts that run experiences and output a lot of information, in text files and in the console. I'd like to add some colors in the console output, to make it mor …
0
votes
1answer
23 views
Output parameter for TABLE OF VARCHAR2 Oracle odp.net
Hi all,
I have this type:
TYPE tipo_TableVarchar2 IS TABLE OF VARCHAR2(1000) INDEX BY BINARY_INTEGER;
and procedure procedure get_array (p_arr out TableVarchar2 ) is ...
Oracle …
2
votes
9answers
311 views
Why does this program not output 20?
#include<stdio.h>
int main() {
int a = 1;
switch (a) {
int b = 20;
case 1:
{
printf("b is %d\n", b);
break;
…
1
vote
0answers
40 views
Joomla module works locally but displays nothing when hosted
Hello, I am new to joomla and I need to work on a joomla website for a school project. I modified an existing module to make it display featured projects and it does that flawlessl …
1
vote
3answers
54 views
Getting output from one executable in an other one
Hi there.
I'm currently trying to get the output of an executable console-app into an other one. To be exact, a little overview of what I'm trying to do:
I have one executable wh …
2
votes
5answers
114 views
Why is the output of the following two statements different?
code:
#define f(a,b) a##b
#define g(a) #a
#define h(a) g(a)
main()
{
printf("%s\n",h(f(1,2))); //[case 1]
printf("%s\n",g(f(1,2))); //[case 2]
}
output:
…
