0
votes
2answers
27 views
undefined local variable or method ‘within’ for User:class
Hi there!
I am working with a book to teach myself Ruby-on-Rails. Ruby version is 1.2.3 and rubygems V 1.3.5.
I start the console by ruby script/console and enter:
user = User.new(:screen_name …
1
vote
4answers
49 views
Where do you put input file in eclipse(java) in order to read it from console command?
Hi,
I am writing a java program in eclipse(galileo version). The program reads simple user data from input file specified at console command and process it.
But I am not sure where I should place …
1
vote
2answers
34 views
Write to console and visual studios output?
In Winform Apps Console.WriteLine() writes to the IDE output tab. In a console app it writes to the console and not to the IDE output tab. For debugging reasons i find it easier if i can have i have a …
0
votes
1answer
16 views
Catching stack-trace in Free Pascal
I have a console application written in Free Pascal, that like most larger applications sometimes crashes. As this application is live, I usually ask people to write me down the stack-trace on crash …
0
votes
4answers
121 views
C# Game loop help
Thanks alot for the help
2
votes
1answer
21 views
Show ActiveRecord objects like table in ./script/console
How to display ActiveRecords like
>> Role.all
+----+-----------+-------------------------+-------------------------+
| id | name | created_at | updated_at |
…
0
votes
5answers
63 views
C# Console case statment help
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace LittleQuizworld_3
{
class Program
{
public string QuestionText; //Actual question text.
…
0
votes
5answers
80 views
NullPointerException in Console’s readLine()
This:
Console c = System.console();
String readline;
String u = c.readLine("%s", "args");
Throws a NullPointerException. Yet the signature of the method is:
public String …
1
vote
2answers
46 views
What does “disabled echoing” means?
The readPassword() method of the
Console class has echoing disabled.
What's echo?
1
vote
1answer
58 views
Process.WaitForExit() on Console vs Windows Forms
I have a console app and a win forms app that both need to call out to a remote server for some data, they make a call to the command line part of Putty, plink.exe, to run a remote command over SSH.
…
0
votes
8answers
136 views
C++ - Hold the console window open?
Hi, my question is super simple, but I'm transitioning from c# to c++, and I was wondering what command holds the console window open in C++?
I know in C#, the most basic way is:
Console.ReadLine();
…
0
votes
2answers
73 views
[C#] Multiple Consoles at Once
Is there an easy way to do this?
I am testing my networking application using just the console for now. What would be nice is to have multiple consoles from one project and one press of the "Debug …
0
votes
2answers
48 views
SMTP Mail client settings in app.config file C#
I've put mail settings in app.config and can successfully pull them into a mailSettingsSectionGroup object. However, I'm not sure how to send a message using these settings.
This is what I have so …
3
votes
2answers
62 views
Python 2.6: reading data from a Windows Console application. (os.system?)
I have a Windows console application that returns some text. I want to read that text in a Python script. I have tried reading it by using os.system, but it is not working properly.
import os
foo = …
1
vote
1answer
53 views
Java: System.out.println and System.err.println out of order
My System.out.println() and System.err.println() calls aren't being printed to the console in the order I make them.
public static void main(String[] args) {
for (int i = 0; i < 5; i++) {
…
