1
vote
2answers
28 views
How can one have a dedicated console window per AppDomain in a console .NET application?
Dear ladies and sirs.
My console .NET application has several app domains. My wish is simple - console window per app domain.
Motivation:
The application is actually an MbUnit test assembly and the …
2
votes
4answers
109 views
Drawing in a Win32 Console on C++ ?
What is the best way to draw things in the Console Window on the Win 32 platform using C++?
I know that you can draw simple art using symbols but is there a way of doing something more complex like …
1
vote
4answers
52 views
Where do you put input file in eclipse(java) in order to read it from console command?
Hi,
I am writing a java program in eclipse(galileo version). The program reads simple user data from input file specified at console command and process it.
But I am not sure where I should place …
0
votes
4answers
122 views
C# Game loop help
Thanks alot for the help
0
votes
1answer
20 views
Catching stack-trace in Free Pascal
I have a console application written in Free Pascal, that like most larger applications sometimes crashes. As this application is live, I usually ask people to write me down the stack-trace on crash …
0
votes
2answers
31 views
undefined local variable or method ‘within’ for User:class
Hi there!
I am working with a book to teach myself Ruby-on-Rails. Ruby version is 1.2.3 and rubygems V 1.3.5.
I start the console by ruby script/console and enter:
user = User.new(:screen_name …
0
votes
5answers
85 views
NullPointerException in Console’s readLine()
This:
Console c = System.console();
String readline;
String u = c.readLine("%s", "args");
Throws a NullPointerException. Yet the signature of the method is:
public String …
2
votes
1answer
25 views
Show ActiveRecord objects like table in ./script/console
How to display ActiveRecords like
>> Role.all
+----+-----------+-------------------------+-------------------------+
| id | name | created_at | updated_at |
…
0
votes
8answers
138 views
C++ - Hold the console window open?
Hi, my question is super simple, but I'm transitioning from c# to c++, and I was wondering what command holds the console window open in C++?
I know in C#, the most basic way is:
Console.ReadLine();
…
0
votes
5answers
63 views
C# Console case statment help
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace LittleQuizworld_3
{
class Program
{
public string QuestionText; //Actual question text.
…
1
vote
1answer
58 views
Process.WaitForExit() on Console vs Windows Forms
I have a console app and a win forms app that both need to call out to a remote server for some data, they make a call to the command line part of Putty, plink.exe, to run a remote command over SSH.
…
1
vote
2answers
35 views
Write to console and visual studios output?
In Winform Apps Console.WriteLine() writes to the IDE output tab. In a console app it writes to the console and not to the IDE output tab. For debugging reasons i find it easier if i can have i have a …
1
vote
2answers
46 views
What does “disabled echoing” means?
The readPassword() method of the
Console class has echoing disabled.
What's echo?
0
votes
2answers
76 views
[C#] Multiple Consoles at Once
Is there an easy way to do this?
I am testing my networking application using just the console for now. What would be nice is to have multiple consoles from one project and one press of the "Debug …
5
votes
4answers
162 views
How can I show Perl console output in a GUI?
I have several simple Perl programs writing to the standard output, but this has some problems :
some of my users are scared by a console
my users works on Windows, so my program output is displayed …
