Questions tagged [console-application]

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.

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. A user typically interacts with a console application using only a keyboard and display screen, as opposed to GUI applications, which normally require the use of a mouse or other pointing device. Many console applications such as command line interpreters are command line tools, but numerous text-based user interface (TUI) programs also exist.

As the speed and ease-of-use of GUI applications have improved over time, the use of console applications has greatly diminished, but not disappeared. Some users simply prefer console based applications, while some organizations still rely on existing console applications to handle key data processing tasks.

7241 questions
2
votes
2 answers

How to open Empty console window in program (windows)

I need to open a Console window from the application and need to perform read write operation using console API.
Johnnie
  • 235
  • 5
  • 13
2
votes
1 answer

Clickable batch file for nasm compiler

I want to compile assembly code via double-clicking a batch file in the directory of my .asm file. The reason is because the NASM call has few parameters and I want to bypass this step each time. I wrote a batch that works, but only if you…
psychosys
  • 57
  • 1
  • 6
2
votes
1 answer

Get the downloadUrl of files in google driver in C# console application

I am working to connect to the google drive, list every files with any formats and then download it physically on my hard. I used the methods which google API prepared for me. But I think the way I worked I just have access to the content of each…
Golnaz Saraji
  • 154
  • 1
  • 3
  • 14
2
votes
0 answers

Running Flutter Doctor without any results

After cloning successfully flutter, I try to execute 'flutter doctor' but I don't get any results, even a wait for more than 60 minutes. I have tried several versions, also the beta branch, also searched in the repo issues and stackoverflow without…
benLIVE
  • 597
  • 3
  • 14
  • 29
2
votes
0 answers

F# New Project Dialog does not show Console Application option

I installed Visual Studio 2017 version 15.6.5 (the latest) and now when I create a new Visual F# project under .NET Standard the only alternative is Class Library (.NET Standard). I would like to create a Console Application. How can I do that?
Soldalma
  • 4,636
  • 3
  • 25
  • 38
2
votes
1 answer

The stream does not support concurrent IO read or write operations

I have tried to search for this issue else where in Stack Overflow but couldn't find a proper answer, hence posting my question here. Below is my code, basically i am trying to read content from a file and post it to a web api, and then repeat the…
VIRIYALA NARESH
  • 187
  • 1
  • 4
  • 17
2
votes
0 answers

Downloading XLSX file with Drive API v3

I'm using the following method to download Google Doc and Google Sheet files- these are working fine. public static MemoryStream DownloadFile(Google.Apis.Drive.v3.Data.File file) { Console.WriteLine("Downloading file '{0}'", file.Name); …
Snailer
  • 3,777
  • 3
  • 35
  • 46
2
votes
2 answers

C++Builder Console application: linking to a __closure based method

First off, forgive me on the title. Not really sure how to ask this question: I have an application that I need to convert to a console application (note the application runs fine as a VCL style windows app). The app uses a few 3rd party widgets…
Brian P.
  • 206
  • 3
  • 14
2
votes
1 answer

Inno Setup runhidden flag is not working for console application executed from batch file

I'm using Inno Setup to make installer for my Django webapp created using PyInstaller. Since my application needs a command (command-line console application) to run a server, I wrote a batch script to accomplish that. My problem is I don't want to…
skysoft999
  • 540
  • 1
  • 6
  • 27
2
votes
3 answers

Console application doesn't periodically flush output

I'm using a 3rd party console application that periodically outputs data to the console line by line. When I attempted to run it through my App so that I can parse the output data, I noticed that the OutPutstream was readable only AFTER the…
Omar
  • 39,496
  • 45
  • 145
  • 213
2
votes
0 answers

How to NOT make a console application wait for input

Quick note for reviewers: Since my question was randomly closed and marked as an "exact" duplicate, I was forced unfortunately to make this question again. Please actually read the problem before randomly marking and closing the question as an exact…
Chris
  • 2,254
  • 8
  • 22
2
votes
0 answers

Can't get Dependency Injection's Configure<> to work in .net core console application

I'm trying to implement dependency injection in a .net core console application, but I can't manage to configure MySettings public static class Program { public static IConfigurationRoot Configuration { get; private set; } public static…
Doc
  • 5,078
  • 6
  • 52
  • 88
2
votes
2 answers

Windows 2008 server Task Scheduler giving error 0XC0000005

I have published a console application through .Net Core2, and copied the output folder with EXE file on server. If I double click and execute it is running all fine. But when I am scheduling it though task scheduler it is giving error -…
2
votes
1 answer

How can I set a minimum console size C#?

How can I set a minimum console size in console application C# that users can not change? Thank you in advance for answers ;)
Denis
  • 21
  • 3
2
votes
1 answer

Whatsapp API old_version error

I've been trying to get my whatsapp Console App to work. Unfortunately when trying to register I'm getting an error: old_version. Here's what my program logs in the console (program code's below): Succesfully connected... Failed to log in... …
DutchJelly
  • 116
  • 9