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 ...
0
votes
1answer
20 views
How to create a filepath from console input in Objective-c?
For my application, I need a user to be able to enter some input through the console, and that string, except uppercased, to be part of a path file.
I have the following code, but while everything ...
-1
votes
2answers
117 views
cout before cin in c++
I need help with this problem. Is it possible to print the text before cin.
For example:
#include<iostream>
#include<conio.h>
void main ()
{
char name[20];
...
0
votes
0answers
9 views
How to access the ProfileCommon and aspMembership in a Console application?
I got confused while accessing the aspMembership and Profiles in Console application.
I had did this in the createuser event in Web application.
Here the code is:
ProfileCommon p = ...
-1
votes
1answer
33 views
Extract protected .rar in C# [on hold]
At first I thought this would be an easy task, but with every search result I check I'm more doubt that it's really that easy.
I'll use this post to track my results. May it will help someone who ...
-1
votes
1answer
21 views
meaning of attributes in urwid examples
There are some urwid examples at urwid examples. One of them being this code :
Code 1 :
import urwid
palette = [
('banner', 'black', 'light gray', 'standout,underline'),
('streak', 'black', 'dark ...
1
vote
1answer
17 views
Call stack broken when waiting for console input?
I'm observing some interesting (and annoying) behavior on VS2010 (and VS2005):
Context: Running a 32bit Windows Console executable from the Visual Studio debugger on Win78 64bit.
When obtaining ...
0
votes
0answers
14 views
topmost widget choices for urwid
Can a container widget like ListBox be a topmost widget ? For description of a topmost widget look widget
-1
votes
3answers
38 views
.net application failing when fired via scheduled task
I have a .net console application written in c# which does exactly what it should when run inside visual studio and when clicking the .exe file in the file system. It runs like a charm. BUT when I ...
2
votes
1answer
20 views
Send event to independent application
I am optimizing the parameters of a simulation model that I wrote in C# using an external optimizer.
To allow this external optimizer to 'call' my C# model, I wrote a console application in C# ...
0
votes
0answers
38 views
Command prompt messed up after running a Python program
The code below creates a layout and displays some text in the layout. Next the layout is displayed on the console screen using the raw display module from the Urwid library. (More information on my ...
0
votes
1answer
28 views
Animate flood fill in python
I have just finished with my food fill algorithm in python. It runs on an N*N matrix filled with integers. I would like to somehow animate it's workings. Is it somehow possible on the console? I think ...
0
votes
0answers
11 views
relevant urwid example application that uses Canvas class
Hi I am trying to use urwid for a project to make a console application. (More info on my complete project can be gleaned from questions at widget advice for a console project and urwid for a console ...
0
votes
1answer
40 views
'AttributeError' while trying to create a console screen using urwid
code below creates a layout and displays some text in the layout. Next the layout is displayed on the console screen using raw display module from urwid library. (More info on my complete project can ...
0
votes
2answers
30 views
'Assertion Error' while trying to create a console screen using urwid
code below creates a layout and displays some text in the layout. Next the layout is displayed on the console screen using raw display module from urwid library. (More info on my complete project can ...
-3
votes
1answer
43 views
C# Console application two main()
I have my Program.cs:
class Program
{
static void Main()
{
// code here
}
}
and then I add a Class File, that looks like this:
using here;
public class AddItem
{
}
and ...