2
votes
6answers
2k views
How can I get the application’s path in C# in a console app?
I have a console app and I would like to find the applications path.
In winforms I can use Application.StartupPath to find the currentpath, but this doesn't seem to be available in a console app?
1
vote
3answers
70 views
Make win C# console application to show posibile command when user hit TAB
I am developing console application in C# with lot of parameters and sometime I as developer can't remember combination of parameters to call application in right way, I can't even and think how users …
0
votes
3answers
65 views
Execute a shell command from a .net application
I need to execute a shell command from my .NET app, not unlike os.execute(a little ways down on that page) in Lua. However with a cursory search i couldn't find anything, how do i do it?
0
votes
2answers
25 views
Running a process in pythonw with Popen without a console
I have a program with a GUI that runs an external program through a Popen call:
p = subprocess.Popen("<commands>" , stdout=subprocess.PIPE , stderr=subprocess.PIPE , cwd=os.getcwd())
…
3
votes
5answers
127 views
Visual Studio Console App - Prevent window from closing.
This is a probably an embarasing question as no doubt the answer is blindingly obvious.
I've used Visual Studio for years, but this is the first time I've done any 'Console Application' development.
…
1
vote
4answers
97 views
Tell C++ console to wait
What is the method to tell the console to wait for x seconds. Is there a built in method or must I make one.
2
votes
5answers
132 views
Is there a command line framework for ruby?
So, there are web frameworks, there are GUI frameworks, I was just wondering if there was a console/command line framework for ruby?
Specifically, I would like to be able to:
Have a particular view …
2
votes
3answers
62 views
System.out.println output to JTextArea
Hello,
I would like to everytime I call System.out.println to append to a given JTextArea, without having to change all calls to System.out.println... Is this possible?
Thank you.
0
votes
2answers
683 views
Stuck on GenerateConsoleCtrlEvent in C# with console apps
I'm having the hardest time trying to get this to work, hoping one of you has done this before.
I have a C# console app that is running a child process which inherits its console. I want a ctrl-c …
1
vote
3answers
56 views
Supress console when calling “system” in c++
I'm using the system command in C++ to call some external program, and whenever I use it, a console window opens and closes after the command finishes.
How can I avoid the opening of a console …
3
votes
4answers
128 views
What’s the different between Console.Write(”H”) and Console.Write(’H’) in C#. thanks.
Hello all.
What's the different between Console.Write("H") and Console.Write('H') in C#. thanks.
:-)
0
votes
0answers
33 views
Read a buffer of unknown size (Console input)
Hi. I'm a little behind in my X86 Asm class, and the book is making me want to shoot myself in the face. The examples in the book are insufficient and, honestly, very frustrating because of their …
4
votes
5answers
98 views
Caching System.Console output
We have some methods that output a lot of coloured text to the Console.
It's actually a menu that is built by looping through a collection of data.
Because we are writing item by item (and one line …
0
votes
1answer
24 views
Modify Windows Command Prompt History from a Program?
Is there an API to add to the a windows command prompt history? I writing a console program and it would be handy to pop some commands into the history buffer under certain (limited) conditions.
0
votes
2answers
35 views
how to configure settings of visual studio console window once and for all
How can I change the default settings of the Visual Studio console window?
