console-application

Vietnamese character in .NET Console Application (UTF-8)

Im trying to write down an UTF8 string (Vietnamese) into C# Console but no success. Im running on windows 7. I tried to use the Encoding class that convert string to char[] to byte[] and then to String, but no help, the string is input directly fron the database. Here is some example Tôi tên là Đức, cuộc sống thật vui vẻ tuyệt ...

Is there a way to force a console application to run at a certain window size (using Pdcurses)?

I'm trying my hand at throwing together a minor roguelike in C++, but I've run into a problem - in order to get the game to display correctly, the console window has to be a bit wide (around 45 rows, 115 cols). It's easy enough to change by right clicking on the menu bar and setting the defaults for windows with the same name, but is th...

FileVersionInfo.GetVersionInfo() incorrect in Console Application

Hi, I'm getting some serious weirdness using FileVersionInfo.GetVersionInfo() and was hoping somebody might be able to help. The basics of the issue is that I am iterating through all the files in a folder calling GetVersionInfo() on each. There are about 300 files. This works ok for all but 2 of the files. For these DLLs I am getting ...

How to run Console Application in Background (no UI)?

Possible Duplicate: .Net Console Application that Doesnt Bring up a Console I have a console application written in VB.NET that will become a scheduled task on a web server. It will run every ten minutes. The problem is that every ten minutes it displays the empty black CMD window while processing, which can be distracting. ...

Prevent a console app from closing when not invoked from an existing terminal?

There are many variants on this kind of question. However I am specifically after a way to prevent a console application in Python from closing when it is not invoked from a terminal (or other console, as it may be called on Windows). An example where this could occur is double clicking a .py file from the Windows explorer. Typically I ...

Global variable in a static method

This seems basic but Im finding this quite trivial. Simply how would you recommend setting a global variable with a static class (i.e. console-application)? To give you a little more background the main method is calling some custom eventhandlers that I hope to get / set the variables. Any ideas or suggestions you have is appreciated....

schedule a console application using c#

Let me preface this by saying that I'm pretty green to C# and .NET development in general. That being said, I'd like to schedule a console application to run some code once every 24 hours. I'm open to any form of implementation, including timers, schedulers, or even a separate application that would call my console application, as long...

create and write to table in c#

i have a function that return a results, here is the results: 3.98901669117011 vm 0.138912911874081 nvm 2.30800830234368 hg 1.13724811900026 ms 2.33557467785177 ls 90.0912392977601 none I want the words to be in the top of the table, and the numbers in the rows, and in the sides some string, here is an example: how ca...

How to get a week's view history of the job i.e running from Autosys Job Schedular?

Hi All, SCENARIO: Previously Jobs are scheduled to run from SQL Server. In the SQL Server database the jobs ran as per their start times mentioned. All the operations such as stopping the running job,starting the job are done by right clicking on the job. View history for the job (status,starttime and endtime of the job) is done by ri...

Where is class files are used ?

Where is .class files are used ? In C#.net or ASP.net or in VB.net or only in Windows applications or only in web applications or in only console applications ...

After printing few lines on console window, how to get bach to the first line to print new data.

After printing some data(a, b, c) a b c on console screen, how to get back to the first line and print x, y, z like this a x b y c z ...

Walkingthrough of my project C# application?

I am planning to develop a C# application for my client. I need advices from well experienced dot net guys with restpect to SDLC. I want the walk thorugh of the project , which are the different steps that needs to be followed? Application is to parse the body of the email and put the filterd data into the excel file. Please advice m...

Nice implementations of Console.WriteTable(DataTable), Console.WriteList(LIst)

Are there any implementations to display nicely table or list data in c# console app like say in PowerShell? Upd. Maybe third side or any? ...

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")) ...

Input from console window in game

when you want to input in console window and you hold a key down for a moment, the output is displayed but after a bit of some lag. for example, in any type of common text editors you would see the same result. is there anyway to get a direct input for console games? I'm currently using _getch() to read the keyboard input and _kbhit to ...

Can you create a start-up window in console program?

I want to a create dialog box like window before displaying the console window. I haven't actually tried anything yet but was just wondering if it can be displayed as a start-up window. ...

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 to read B's exit code. How to do that? I need only this little tip on how to run this other app in same cmd window. ...

Rewriting characters in command window

I want to output some characters in C# console application and then rewrite them, thus changing characters in position already occupied in command window. So for for example I could show progress in percentages 10%, 20%, 30% (but in the same place). How can I do that? ...

Listing files and directories writable by the group in Linux

What's the easiest way to recursively list files in a given directory and its subdirectories, that are writable by the group which owns them? I'm using Debian 5. ...

Is there a way to convert my Console Application into a Windows Forms Application in C#?

I created a console application, but I want to turn it into a windows forms application. I found This and it appeared to be what I needed, but I got an error message when I tried to use using System.Windows.Forms; This is the error message I got: Error 1 The type or namespace name 'Windows' does not exist in the namespace 'Syst...