Skip to main content

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.

console-application
2 votes
1 answer
79 views

How to hide console application into Tray?

I want my console application to be hidden in the system tray after it starts. When working with a GUI application, I used TTrayIcon, and it worked without any problems. For the console application, I ...
Sashko1121's user avatar
0 votes
0 answers
33 views

How to stop C# console app from closing immediately and run function before? [duplicate]

My app requires to run function to dispose all resources and send packet about closing connection and I need to prevent insta death of my app and run some code before closing by pressing CTRL+C or ...
Kuzya The Modder's user avatar
0 votes
0 answers
26 views

Python unit test captured stdout not changing

I am writing an interpreter in Python 3.12 and my module currently outputs using Python's print function. The interpreter module can take a file name as an input. The given file is some code in the ...
bradbase's user avatar
  • 479
0 votes
0 answers
18 views

The "MICROSOFT.ACE.OLEDB.12.0" provider is not registered on the local machine

I'm using Automation Anywhere 360 where i'm calling database connect for Excel using AA360 Action (Database connect) and this is working as expected . But when i'm calling the same via console app it ...
Rajkumar Yadav's user avatar
0 votes
0 answers
16 views

Shared Folder Access [closed]

I have a console app that simply generates pdf into different shared folders. I have 2 different pdf files that must be generated into the same shared folder or location, first is the daily pdf and ...
neckart's user avatar
  • 13
0 votes
1 answer
35 views

Click on a Selenium button that isn't an input

I've the following HTML code: <div _ngcontent-fsi-c26="" class="col-xs-12 ng-star-inserted" style="margin-top: 3%;"> <div _ngcontent-...
Pablo Costa's user avatar
1 vote
1 answer
43 views

How to install .NET Core console app on Windows to get executed directly from command prompt

I have developed simple .NET Core 8.0 console application (app name: opengate.exe). To run this app, I have to locate the folder first on the command prompt then I can run the opengate.exe. I want ...
Neeraj Kumar Gupta's user avatar
0 votes
0 answers
26 views

Can't create an event for google analytics 4 for c# application?

I am trying to send an event to GA4 where it simply shows how many users have run the application with the code shown that I got from another question. The code requires an event to send to, but I am ...
Zrylx 's user avatar
0 votes
0 answers
47 views

Print Pixel in a console platform independant

I made a TextArt using █ (full block) characters and want to use it for a Game Project of mine. Sadly, when I try to print it, I get either undefined behavior (it outputs ª instead of █), or no ...
morigan's user avatar
  • 33
0 votes
0 answers
58 views

Why is console.clear not clearing the whole console but just half?

I'm not sure what the problem is but here is my code. When I run it, instead of clearing the console and then printing the next frame, it just prints the next frame :( I tried changing to internal ...
Tilak Rao's user avatar
0 votes
4 answers
174 views

What is the difference between Console.WriteLine and Console.Out.WriteLineAsync in an async method?

Once, when I used the cw snippet (type cwTAB) in an async method, Visual Studio would use await Console.Out.WriteLineAsync(); instead of the original Console.WriteLine();. Today I updated Visual ...
shingo's user avatar
  • 23.8k
0 votes
1 answer
77 views

Qt console application ignores inputs (cin)

I just installed Qt Creator 13.0.2 and created my first console application (left all in default): #include <QCoreApplication> #include <QDebug> #include <QString> #include <...
Batman's user avatar
  • 87
0 votes
1 answer
51 views

ml.net dont have ApplyOnnxModel

i want use ml.net and load onnx model in it. but i dont have any ApplyOnnxModel method in mlContext ... this is installed packaged <PackageReference Include="Microsoft.ML" Version=&...
abbas-h's user avatar
  • 410
1 vote
2 answers
50 views

Adding MediatoR into a C# Console Application

I previously discovered the MediatoR and I'm impressed by it and wondering how to add it to a very simple C# console application.
gary's user avatar
  • 203
0 votes
1 answer
30 views

Calling a Console App from Blazor Server web app with parameters

I have a Blazor Server app, that when a user clicks a button, it will cycle through a List , generate a pdf document and email the users in the list (over 350 pdfs and users, over 10 minutes to run). ...
AndyC's user avatar
  • 47

15 30 50 per page
1
2 3 4 5
492