Tagged Questions
A console application is a computer program designed to be used via a text-only computer interface, such as a text terminal, the command line interface of some operating systems (Unix, DOS, etc.) or the text-based interface included with most Graphical User Interface (GUI) operating systems, such as the Win32 console in Microsoft Windows, the Terminal in Mac OS X, and xterm in Unix.
66
votes
16answers
3k views
Cooler ASCII Spinners?
In a console app, an ascii spinner can be used, like the GUI wait cursor, to indicate that work is being done. A common spinner cycles through these 4 characters: '|', '/', '-', '\'
What are some ...
53
votes
8answers
47k views
How can I get the application's path in .NET in a console app?
I have a console app, and I would like to find the application's path.
In winforms I can use Application.StartupPath to find the current path, but this doesn't seem to be available in a console app?
25
votes
7answers
22k views
How to Run a C# console application with the console hidden
Is there a way to hide the console window when executing a console application?
I am currently using a Windows Forms application to start a console process but I don't want the console window to be ...
21
votes
5answers
12k views
Add Web Reference option missing in VS2008
I'm trying to add a Web Reference to a VS2008 .Net 3.5 Console Application but the option's not there. The options to "Add Reference" and "Add Service Reference" are there.
19
votes
2answers
3k views
Show/Hide the console window of a C# console application
I googled around for information on how to hide one’s own console window. Amazingly, the only solutions I could find were hacky solutions that involved FindWindow() to find the console window by its ...
17
votes
1answer
2k views
Opening a TStream on stdin/stdout in a Delphi console app
I'm trying to write a Delphi console application that creates a TStream for its standard input, and another TStream for its standard output.
(It will be launched by a host app with its input and ...
16
votes
4answers
629 views
Why does my console application have command history?
I have written a console application, which is essentially a Console.ReadLine()-Loop. When the application is waiting for input, pressing the up arrow key iterates through all previous lines of input. ...
16
votes
5answers
2k views
Password masking in C# console application
I tried the following code...
string pass = "";
Console.Write("Enter your password: ");
ConsoleKeyInfo key;
do
{
key = Console.ReadKey(true);
// Backspace Should Not Work
if (key.Key ...
15
votes
6answers
910 views
CodeGolf: Brothers
I just finished participating in the 2009 ACM ICPC Programming Conest in the Latinamerican Finals. These questions were for Brazil, Bolivia, Chile, etc.
My team and I could only finish two questions ...
15
votes
6answers
7k views
how to run a winform from console application?
How do I create, execute and control a winform from within a console application?
14
votes
6answers
7k views
HttpUtility.UrlEncode in console application
I'd like to use HttpUtility.UrlEncode in a console application, VB.NET, VS 2010 Beta 2.
System.Web.HttpUtility.UrlEncode(item)
Error message: 'HttpUtility' is not a member of 'Web'.
In this ...
11
votes
5answers
11k views
.NET Console Application Exit Event
Using .NET is there a method, such as an event, of detecting when a Console Application is exiting, I need to clean up some threads and COM objects?
I am running a message loop, without a form, from ...
11
votes
5answers
3k views
Using ELMAH in a console application
I just started using ELMAH and am a fan. My team supports a large number of web applications and I'm particularly excited that ELMAH lets us save exceptions from each application to the same MS SQL ...
10
votes
3answers
333 views
Any ideas what a Bannon operator is in C#?
Working on a C# console app, I have a line:
rowsFound = tempUsers.Select("EmailAddress = '" + userData[2].ToString() + "'");
rowsFound is a DataRow[], tempUsers is a DataTable, and userData is a ...
10
votes
2answers
791 views
How can I write fast colored output to Console?
I want to learn if there is another (faster) way to output text to the console application window using C# .net than with the simple Write, BackgroundColor and ForegroundColor methods and properties? ...
10
votes
3answers
1k views
What happens when you close a c++ console application
I guess the question says it all, but, what happens if someone closes a c++ console app? As in, clicks the "x" in the top corner. Does it instantly close? Does it throw some sort of exception? Is it ...
9
votes
4answers
353 views
9
votes
1answer
959 views
How to enforce required command-line options with NDesk.Options?
I was just writing a console utility and decided to use NDesk.Options for command-line parsing. My question is, How do I enforce required command-line options?
I see in the docs that:
options ...
9
votes
5answers
3k views
.Net Console Application that Doesn't Bring up a Console
I have a console application I'm using to run scheduled jobs through windows scheduler. All the communication to/from the application is in email, event logging, database logs. Is there any way I can ...
8
votes
3answers
761 views
Generic way to exit a .NET application
I understand that there are a few ways to exit an application, such as Application.Exit(), Application.ExitThread(), Environment.Exit(), etc.
I have an external "commons" library, and I'm trying to ...
8
votes
4answers
2k views
.NET Global exception handler in console application
Question: I want to define a global exception handler for unhandled exceptions in my console application. In asp.net, one can define one in global.asax, and in windows applications /services, on can ...
8
votes
1answer
2k views
Load Assembly in New AppDomain without loading it in Parent AppDomain
I am attempting to load a dll into a console app and then unload it and delete the file completely. The problem I am having is that the act of loading the dll in its own AppDomain creates a reference ...
8
votes
8answers
2k views
how to execute console application from windows form?
I want to run a console application (eg app.exe) from a windows form load event.
I'v tried System.Diagnostics.Process.Start(), But after it opens app.exe, it closes it immidiately.
Is there any way ...
8
votes
5answers
7k views
Redirect Console.Write… Methods to Visual Studio's Output Window While Debugging
From a Console Application project in Visual Studio, I want to redirect Console's output to the Output Window while debugging.
8
votes
5answers
3k views
Colorized Ruby output
Is there a proper plugin or a class to perform background and foreground text colorization within a common output console?
I remember, when programming Pascal we all used to play with textcolor(...) ...
8
votes
2answers
5k views
Question concerning Win32 Console app vs. CLR Console app
I'm working on a C++ project that I don't intend to develop or deploy using .NET libraries or tools, which means it would make sense for me to create it using a Visual Studio Win32 Console ...
8
votes
4answers
2k views
What makes an app console or Windows Form application?
[Visual Studio 2008]
I created a new project for console application and modified it to look like this:
class Program
{
static void Main (string[] args) {
Thread.Sleep (2000);
}
}
...
8
votes
3answers
3k views
c# console, Console.Clear problem
I am writing a console program in C#.
Is there a way I can use a Console.Clear() to only clear certain things on the console screen?
Here's my issue:
I have a logo (I put it on screen using ...
7
votes
6answers
347 views
console user interface in .net - is it possible?
I am wondering whether there are libraries in .NET that make it easy to write console user interfaces. For instance, imagine a WinForms application, where the user can:
Navigate the menus
Respond to ...
7
votes
4answers
3k views
Hide Console Window in C# Console Application
The thing is, i really dont want the console window to show up...but the solution should be running.
My point here is, I want to keep the application running in the background, without any window ...
7
votes
4answers
624 views
Mask Password Input in a Console App
I am writing a console application using BDE 2006 and I want it to be able to prompt for a password string and mask it with "*" as the user is typing. I have looked around but I could not find ...
7
votes
6answers
2k views
How to hide a console application in C#
I have a console application in C#, and I want that the user won't be able to see it.
How can I do that?
Many thanks,
7
votes
4answers
1k views
Run console application from other console app
I have a C# console application (A). I want to execute other console app (B) from within app A (in synchronous manner) in such way that B uses the same command window. When B exists, A should be able ...
7
votes
7answers
3k views
How do you clear console screen in C?
Is there a "proper" way of clearing a screen in C for a console application?
(Besides using:system("cls"))
7
votes
5answers
2k views
Is it possible to build a Console app that does not display a console Window when double-clicked?
Related:
Should I include a command line mode in my applications?
How to grab parent process standard output?
Can a console application detect if it has been run from Explorer?
I want to ...
7
votes
6answers
8k views
How can I use System.Web.Caching.Cache in a Console application?
Context: .Net 3.5, C#
I'd like to have caching mechanism in my Console application.
Instead of re-inventing the wheel, I'd like to use System.Web.Caching.Cache (and that's a final decision, I can't ...
7
votes
6answers
2k views
Console Application IP Address
I am looking to figure out what my ip address is from a c# console application. I am used to a web application by using the Request.servervariables() method. But not sure about how to do it in a ...
7
votes
3answers
5k views
When should one use Environment.Exit to terminate a console application?
I'm maintaining a number of console applications at work and one thing I've been noticing in a number of them is that they call Environment.Exit(0).
A sample program would look like this:
public ...
6
votes
2answers
71 views
Setting C# console application location to a secondary screen
Overview: I am working on a project which involves a WCF and multiple types of clients. I have created several Test clients and I have a WCF which is hosted in a console app.
This results in me having ...
6
votes
6answers
181 views
C++ and printf - strange character output
I'm a complete newb to C++, but not to Java, C#, JavaScript, VB. I'm working with a default C++ console app from Visual Studio 2010.
In trying to do a printf I get some strange characters. Not the ...
6
votes
1answer
200 views
Interactive console programming for c/c++?
So I've written a small program which takes in commands by the users, and then displays the output (after connecting to a server). It's an interactive console of sorts.
However, after using the ...
6
votes
5answers
277 views
Should I develop my game idea in text mode first?
I recently came up with an idea for a simulation/strategy game. I've been sketching out a lot of my ideas on paper about the game mechanics as well as have a few of the basic classes and objects ...
6
votes
4answers
1k views
C# - Console.Beep does not work on Windows Vista
When I tried Console.Beep() on Win Vista (64bit), it just does not work. The speaker itself is OK, when the PC starts, it beeps.
Any advice? Thanks!
6
votes
2answers
358 views
How can I use NUnit to test a method with out or ref parameters?
If I have a function which accepts an out parameter and accepts an input form console -
public void Test(out int a)
{
a = Convert.ToInt16(Console.ReadLine());
}
How can I accept an input ...
6
votes
5answers
341 views
Is is possible to programmatically clear the console history?
When working with a console application, a history of everything that has been entered at a Console.ReadLine() is stored. When at a console prompt to enter something, pressing the up/down cursor will ...
6
votes
4answers
543 views
Delphi {$IFDEF CONSOLE} Problem
I just tried
program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils;
begin
{$IFDEF CONSOLE}
beep;
{$ENDIF}
end.
and expected to hear a beep during runtime, but not. The following test ...
6
votes
2answers
276 views
C# How to redirect stream to the console Out?
I found lots of samples how to redirect console output into a file. However I need an opposite soluiton - I have StreamWriter which I want to be shown in the Console output once I do ...
6
votes
4answers
347 views
How do I detect when output is being redirected?
I have a Win32 application written in C that can have its console output via printf() redirected to a log file.
It would be nice if I could have my app. detect if it had been started with or without ...
6
votes
1answer
1k views
How can activate a glass effect (windows Vista/7) in a console application using Delphi
As I can activate the glass effect on my console applications. I am using Windows 7 and Delphi 2010.
I found this application so it should be possible.
Thanks.
6
votes
7answers
1k views
How to tell if a Delphi app “owns” its console?
A Delphi console application can be run from the command line of an existing console window, and it can be run by double-clicking on its icon. In the latter case it will create its own console ...