Tagged Questions

2
votes
5answers
120 views

Is it possible to get the output of a program while it’s running?

If I have a windows console program written with c++, is it possible to retrieve that program's standard output, while the program is running? And if not, what would be the best w …
0
votes
3answers
62 views

How do I redirect the input and output of a console C# program to a socket?

How do I redirect the input and output of a console C# program to a socket? I need to start the program from within another process, and make it receive input and emit output to an …
3
votes
3answers
70 views

Console application prompting for input

I'm trying to put together a wrapper around a console application using StandardInput and StandardOutput. I'm getting stuck where the console application would prompt for input suc …
0
votes
2answers
35 views

How to read number and display it to unix console with pipe symbols.

Hi. Id like to make simple digital clock just from symbols. My idea was to make this template: { System.out.println(" _"); System.out.println("|" + "_"+ "|"); …
3
votes
6answers
156 views

Programming Games and Applications/OS

Hello, I am 13 years old and am interested in programming for games. I am currently building an iphone game with Shiva using Lua as the scripting language. After that, I am not sur …
1
vote
2answers
38 views

How can I get pyplot images to show on a console app?

I'm trying to create an image using matplotlib.pyplot.imshow(). However, when I run the program from my console, it doesn't display anything? This is the code: import matplotlib …
2
votes
1answer
74 views

UTF-8 output on Windows XP console

The following code shows unexpected behaviour on my machine (I'm using Visual C++ 2008 SP1 on Windows XP here): int main() { SetConsoleOutputCP( CP_UTF8 ); std::cout & …
1
vote
1answer
60 views

Is it possible to write extension methods for Console?

While looking at this question and it's answers I thought that it would be a good idea to write an extension method for System.Console that contained the desired functionality. Ho …
9
votes
4answers
222 views

Program both as Console and GUI

Is it possible to (and if so, how do I) make a single program work both as a console application and a GUI version using Delphi 2007? What I am after is that if the program is run …
1
vote
4answers
78 views

How to set default input value in .Net Console App?

How can you set a default input value in a .net console app? Here is some make-believe code: Console.Write("Enter weekly cost: "); string input = Console.ReadLine("135"); // 135 …
0
votes
1answer
22 views

MonoDevelop 2.2 beta 2 “No File Name Provided” When Launching in External Console

When I try to run my Mono C# programs in MonoDevelop on an external console, I get the following error. http://i146.photobucket.com/albums/r248/bobber205/error.jpg (First time nee …
1
vote
1answer
40 views

VB.Net command line (console) program with parameters for SharePoint

Hi, I would like to create a console program in VB.net that would allow parameters. What i would like to do is in the code below add parameters so the webpart page can be created …
0
votes
2answers
52 views

c++ libcurl console progress bar

I would like a progress bar to appear in the console window while a file is being downloaded. My code is this: http://stackoverflow.com/questions/1636333/download-file-using-libcur …
1
vote
1answer
28 views

How to abort getchar in a console application when closing it

I've written a simple command line tool that uses getchar to wait for a termination signal (something like: 'Press enter to stop'). I however also want to handle the SC_CLOSE case …
1
vote
4answers
64 views

Windows form from console

Hello. I would like to spawn a Windows form from the console using C#. Roughly like display does in Linux, and modify its contents, etc. Is that possible?

1 2 3 4 5 30 next
15 30 50 per page