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

learn more… | top users | synonyms

0
votes
1answer
42 views

Weird non-ASCII Characters in Console Output

The following is one example of several that seemingly randomly the other night started resulting in weird ascii characters being display in console. For example the player.level displays a smiley ...
0
votes
1answer
34 views

How to use instance class in C# console app

Trying understand c# console app, static make me crazy. In my app: static void Main(string[] args) {TimerCallback callback...} static void Tick(Object state) { !here the problem! } class myclass { ...
1
vote
1answer
26 views

Is there any library/framework/application block to standardize repetitive tasks while building a C# console app? [duplicate]

A production quality console app has to handle validating and parsing command line parameters + displaying errors to the user. This is a repetitive task and I am wondering if there is a ...
3
votes
3answers
32 views

How do I create a Resources file for a Console Application?

I'm trying to use an embedded resource in a console application, but apparently console applications don't come with a resource file automatically. How do I create a resources file for my console ...
0
votes
1answer
33 views

How do I force user to not be able to type past a certain point?

I am currently making a maze program where the user types which direction they would like to go, but they can type anything thanks to the Console.Read() method. Is there any way to limit how many ...
0
votes
1answer
10 views

Programmatically create and export WPF Viewport3D visual object in a console application on the fly

I am developing a wpf user control in a wpf user control library it uses Viewport3D. I see the image in viewport on running application and I can save it to file with RenderTargetBitmap if I call it ...
0
votes
1answer
52 views

Making a console progress bar? (Windows)

So I have a function (or rather, I'll turn it into a function later) to make a random % progress in a console window; like this: #include <iostream> #include <time.h> #include ...
0
votes
1answer
26 views

Changing the icon of a consol application vb.net

How to change the icon of a console application of vb.net? I changed the icon on project properties->Application->icon. But the old default icon remains..Any idea on how to do that please?
0
votes
4answers
85 views

Minimal double type number in C aften which comupter start thinking that its zero.

Sorry for my english. Can you tell me minimal double type number aften which comupter start thinking that double type number equals zero?
0
votes
1answer
32 views

What options are there for converting a .NET console application to client/server?

I have console applications that run on remote servers. Right now I'm connecting to remote desktop and running them. I'm thinking of setting things up so I can run my console programs in "server ...
0
votes
0answers
23 views

AppHarbor background worker, could not load file or assembly WebActivator Version=1.5.2.0

I am having a problem when publishing a console application to appharbor. Error message: FileNotFoundException: Could not load file or assembly 'WebActivator, Version=1.5.2.0, Culture=neutral, ...
2
votes
1answer
33 views

How to determine if GraphicsEnvironment exists

I have an application that needs user input for password. What i want to do is to either read the password from console (if the OS supports one e.g unix) or display a JOptionPane and ask the user to ...
0
votes
4answers
80 views

Test performance

I've created a console application where I try 2 different methods of getting values from a sql database (= on the same server). When I add a stopwatch to check which one is the fastest method, I'll ...
0
votes
1answer
38 views

How can I use pointers passed as arguments to a C# Console Application?

How can I use pointers passed as arguments to a C# Console Application? I got roundly thrummed for this question and my question closed, for my brevity perhaps. Maybe I'm asking the wrong question, ...
0
votes
2answers
43 views

c# console app read excel sheet and remove rows based on contents

I have been reading up on ways to read a CSV File in C# and I have heard that it is really complicated. What I am looking to do is have a console read a csv and if there are cells in column A that ...
0
votes
1answer
21 views

WCF service wasn't generated the web-config configurations

I have a simple WCF service and i would try to add a service reference for my console application it has worked fine and automatically generate the web-config configurations. ...
0
votes
4answers
52 views

I need a simple and elegant user validation technique for a c# console application

Coming from a procedural background, I'm running into a conceptual block while designing a menu-based console application and user input validation. My goal is to display a menu that launches other ...
-2
votes
0answers
41 views

Can One Receive and Return Pointers with a C# Console Application [closed]

Is it possible to, and if so how can one, receive pointers as arguments in a C# Console Application, and return a pointer to the calling application? EDIT I'll site an example. In a C++ console ...
0
votes
0answers
27 views

“An unsecured or incorrectly secured fault was received from the other party” #2

I have a console application calling another API to pull some data. It was running successfully. Now I copied the solution and reference to another machine. After that I am getting the exception: ...
0
votes
2answers
24 views

How to use WMI to copy a file from computer A to computer B using unmanaged VC++

I need to have my unmanaged VC++ program able to copy a file from the computer the application is on to one of 100 other computers. I have administrator access on each computer, so that won't be a ...
0
votes
1answer
24 views

Deploying a Console Application by only copying the Bin Directory

I am wanting to have a deployment process for console applications, similar to the web deployments. I am looking for a way to copy all the contents of the "Release" directory into a network share ...
0
votes
2answers
42 views

Program reads previous input

I've just started understanding C# code and wanted to try out a Console Application. Fairly basic, and would involve a loop to carry out some work until the user decides to quit. This is how my ...
1
vote
1answer
50 views

Download multiple files async and wait for all of them to finish before executing the rest of the code

I am trying to download multiple files from the internet and await for all of them to finish. This is a C# console application that I am running, so no progress bar event handler should be necessary. ...
0
votes
1answer
48 views

Annotation scan not scanning external jars in classpath

Issue: Spring Component Annotation scan not picking up the class annotated in the external jar which is not included in pom.xml. But i need to scan for classes with specific annotation from external ...
3
votes
1answer
56 views

C# Simple Console Application Enumeration Issues

I am new to C# and need some help on the below code. This console application is supposed to store details of 5 applicants in 5 different corresponding arrays. Finally this should allow me to view ...
2
votes
2answers
46 views

Manipulate umbraco content using a console application

This is a noob question but I'm searching for some time and can't find any useful information. I need to develop a rotine (console application) that will read and write content into a umbraco site. ...
1
vote
2answers
66 views

Error while sending email from Console application

I am trying to send mail from a console application but it's throwing an error: Failure Sending Mail I can not understand what's causing the error. I tried the same code on another machine and ...
2
votes
1answer
82 views

Coinitialize has not been called error message

I am in the process of coding a console application that will create a firewall exception for my main app called Client.exe which uploads a few documents to our servers via FTP. I borrowed RRUZ code ...
0
votes
0answers
15 views

computer parts compatibility with neighbuorhood matrix graph representation

My task would be to represent a matrix in c#, where i can tell, if the two parts are compatible with each other, or not. It has to be a console application, so nothing fancy with graphical ...
1
vote
3answers
31 views

Can I get the arguments to my application in the original form (e.g including quotes)?

I have a .Net application that take a bunch of command line arguments, process some of it, and use the rest as arguments for another application E.g. MyApp.exe foo1 App2.exe arg1 arg2 ... ...
0
votes
2answers
52 views

How to receive messages using a message-only window in a console application?

I've created a simple Win32 console application that creates a hidden message-only window and waits for messages, the full code is below. #include <iostream> #include <Windows.h> ...
0
votes
0answers
36 views

MCR_CACHE_ROOT path empty after running the console application

I set the MCR_CACHE_ROOT to a folder C:\MATLAB_cache to speed up my compiled application. Using the linke below How to setup MCR_CACHE_ROOT in Windows But after I ran the console application ...
3
votes
3answers
98 views

How to initialize and load MCR

I incorporated C++ shared library generated from MATLAB in a Win32 console application. The MATLAB program takes 2-3 sec to execute in MATLAB but the console application takes 11-12 seconds to ...
0
votes
1answer
54 views

crm 2011 online console application

I'm trying to create a console application for CRM 2011 to do things like retrieve and retrieve multiple. But, just setting up and getting a console application to work is causing problems. I've ...
0
votes
1answer
32 views

C# Catching live output from process returns nothing while prosess is running

The problem I have a problem where an external process outputs text, but my C# application can't catch it. The external process keeps running forever and outputs text every now and then. The ...
1
vote
6answers
137 views

Why should each element in array be allocated again in c#

Following is the code I wrote Calc[] calculators = new Calc[10]; calculators[0].AddToSum(10); (the corresponding classes and methods are written). But I got "Object reference not set to an instance of ...
0
votes
1answer
33 views

Taking input parameter in C++ Win32 console application

I generated C++ shared library in MATLAB and integrated it in Win32 console application in C++. I have to call this console application from PHP.It has 5 inputs which should be passed from php. When I ...
0
votes
0answers
48 views

Console application output in Visual Studio and PHP different

I have integrated the .net assembly from matlab in a C# console application. I have then called the console application from php. When I run the C# console application in Visual studio and when I ...
2
votes
1answer
36 views

Using ServiceStack Mini Profiler in self-hosted console application

Is it possible to use ServiceStack Mini Profiler in self-hosted console application? If it is, where should I put profiler enable/disable code? In ASP.NET hosted ServiceStack it's usually in ...
0
votes
1answer
39 views

Run an another cmd [duplicate]

I make a C# console program and I want to execute some batch treatments in an other cosole. So, I have the main program which write in the console and at a certain moment I want to execute batch ...
0
votes
0answers
25 views

.NET Impersonation: DLL causes Wind32Exception directory not found

I'm building a Lync application, that starts Lync and signs the user in and sends a message. The next step was to impersonate another user and send a message from that specific user. So I used this ...
0
votes
2answers
65 views

How to hide the console window [duplicate]

We have a legacy app which should have been a service but built as a service and when it's running I don't want the console to be displayed. Is there any way of hiding the console window in a ...
-1
votes
1answer
31 views

Testing WinPCAP with a Console Application

I want to check if I could successfully load the dll's for WinPCAP and want to do it by writing a simple C/C++ console application. However I do not have neither experience nor an idea about how to do ...
6
votes
1answer
81 views

How to convert colored output of a console application (like MSBuild or PowerShell) into HTML format preserving colors?

When I run certain console applications (particularly, MSBuild or PowerShell) they produce an output containing text of different colors (for warnings, errors etc). Sometimes I need to save it for a ...
-1
votes
2answers
44 views

How to communicate between projects in one solution? [closed]

I have a solution in C# that contains two projects. One is Windows form application while the other is console application. Both the projects are set to start when the program runs. I am using the ...
0
votes
0answers
61 views

Getting partial output in console

I integrated the dll file generated from matlab in my C# console application. When I run the C# console application only partial output is getting displayed in the console. How can I generate the full ...
0
votes
2answers
87 views

Consume Web API from .NET Console App

I'm getting the following error while consuming a MVC 4.0 Web API from a .NET 4.5 Console App. "No MediaTypeFormatter is available to read an object of type 'IEnumerable`1' from content with media ...
0
votes
2answers
45 views

External Console Application Control

I am trying to solve a difficult task, for part of which a console application was written several years ago. The source code of the console application has been lost and to rewrite it would most ...
0
votes
1answer
72 views

Lync Client: How to Sign-in and Send Message

Here is what I need to do: I need to build a console app that signs in (not using current user or lync session) to a Lync Server and send a message to a specific contact (userUri). That is all. ...
0
votes
1answer
37 views

How can I dynamically provide command line arguments during VS 2012 C# debug sessions?

I am busy with a console application, being a CLI to an API class that provides top level public methods for a data integration process. During development, it is necessary for me to frequently change ...

1 2 3 4 5 33