User Input is data that the user inputs into the program. It generally takes the form of a String, but may also be an integer, floating-point number, etc.
0
votes
2answers
48 views
How to exit a loop on user ctrl-d input?
I am trying to exit a while loop when a user types CTRL-D to stdin.
This is my futile attempt:
char* querystring = &query[0];
char* delimiter = " ";
char* saveptr;
char* queryword;
//array to ...
0
votes
1answer
11 views
Alternative to nohup when input user is requested
I've got a java application which is started with a nohup command.
Now the stop command is just a kill -15 of that application. This application is a file parsing and write to db application and it ...
0
votes
1answer
32 views
Bash: how can I use read to echo (or do things to) an array member
array content
someCommand=$(cat /etc/somelog) #pseudo
array creation
array=($someCommand)
array length
arrayLen=${#array[@]}
for loop iterates for array length
for (( i=0; ...
0
votes
1answer
28 views
getting a color from a database entry and applying it to a label background
I am having trouble getting the color the user picks and saving it into a database so that when they reload the program it will automatically apply to the labels background.
I have this to let the ...
0
votes
1answer
30 views
Why my textbox TextChanged event gets fired after I enter “only” one character in my text box?
private void NameVal_TextChanged(object sender, EventArgs e)
{
String text = NameVal.Text;
}
As soon as I enter the first letter of my Name this program gets executed . How do I ...
0
votes
1answer
38 views
User Input in OpenGL
So I'm creating a simple game (in this case it's a asteroid clone game) and while i press "Start Game" in my Menu section I get to this window:
Now I want to put my nick in that frame but I have no ...
0
votes
1answer
42 views
How do I call a function which returns a variable, multiple times, while inside another function?
I have a function (text-based game) that asks for input multiple times throughout itself, from which all whitespace I would like removed immediately after before proceeding to error checking.
To ...
-1
votes
0answers
31 views
How do websites convert user input to functional links? [duplicate]
Hi I am wondering how I am able to let users type in (e.g. www.stackoverflow.com) and when I display the input it becomes an actual link
(e.g. <a ...
0
votes
3answers
46 views
sending email upon hitting submit in html or php
I have a simple site with 3 input forms: a first name, last name, and email address fields for the user to fill out. I want them to be able to fill those 3, and when hitting submit, an email to be ...
2
votes
1answer
37 views
User interrupt in Ruby infinite loop (multiple classes)?
I found another question very similar to mine with a solution that worked for me when I wrote it all in one simple script. I even wrote a second simple example sort of simulating what I'm trying to ...
1
vote
2answers
52 views
How can I elegantly turn user input into a variable name in Perl?
I want to use input from the user to pick a hash to operate on. Currently, I have this cumbersome code:
my ( %hash1, %hash2 );
print "Which hash to work with (1 or 2)? ";
my $which = <>;
chomp ...
0
votes
1answer
35 views
How to present Users Option in Algorithm or Pseudo Code
I have a software that asks user to choose different options from 3 sets of parameters before running the program with those inputs. However, I don't know how to show that in an algorithm or a Pseudo ...
1
vote
2answers
29 views
User input when executing R code in batch mode
I am searching for a way to get user input inside a loop while executing in batch mode.
readLines() and scan() work well for me in interactive mode only, in batch mode they start to read in lines of ...
0
votes
1answer
34 views
Make a line break when requesting user input (/P) in batch?
Is it possible to create a line break after a set /P command? I would like the user to be able to type on a new (blank) line instead of next to the existing prompt. For example:
set /P test=type now
...
0
votes
2answers
45 views
Beginning User Authentication IOS
I was just wondering how I would go about implementing User Authentication in my app,
such as creating an account, then signing in through that account. The purpose of the accounts would initially be ...
0
votes
1answer
58 views
Input in tr>td>input is not processed with jquery serialize
i have found some solution to an problem I face under the last solution provided under this link: Create a HTML table where each TR is a FORM
Anyhow, here are some fragments from my code:
HTML:
...
1
vote
1answer
36 views
How do you get the Scanner to pause for input when running the program again?
So as a little challenge to myself to test what I have learned of Java so far, I decided to make a program to apply the writing quirk of a character from a webcomic(Sol Captor from Heartstuck, for ...
0
votes
3answers
29 views
How can I limit user input to a single alpha character in c#?
I'm using the following code to accept user input. I want to limit user input to a single alpha (a-z) character only. I'm finding a lot of validations using IsNumber to validate integer input, and a ...
0
votes
1answer
23 views
Android using a boolean flag to define user input
I apologise if the syntax is off here, especially regarding the Boolean:
public class WeightConverter extends Activity implements OnClickListener, OnCheckedChangeListener {
Button convertWeight;
...
-1
votes
0answers
94 views
Python stack ADT help evaluate infix expression
I am working on a project for school and our task is to evaluate a infix expression with a stack. We must use the stack class provided for us:
class Stack:
def __init__(self):
self.theStack=[]
...
0
votes
0answers
8 views
User input with variables in animations
The goal with this program is to have user input and use it to alter the animation.
The error is Exception in thread "main" java.lang.Error: Unresolved compilation problem:
at ...
1
vote
1answer
44 views
Specify input files in bash script
My issue is with a bash script I am writing. I need to specify input files for a tool called STAR, which is an aligner for bioinformatic use. It has a flag --readFilesIn. In my case this takes two ...
0
votes
1answer
34 views
How to get user confirmation in fish shell?
I'm trying to gather user input in a fish shellscript, particularly of the following oft-seen form:
This command will delete some files. Proceed (y/N)?
After some searching around, I am still not ...
0
votes
2answers
94 views
User Input to Url using Async Task
I'm currently using XMLPullParser to parse a page from a train station API. I'm doing this using Async task as to keep up with the newer versions of android.
Currently I have hardcoded the XML ...
0
votes
2answers
59 views
interactive Shell Script
how do I create a simple Shell script that asks for a simple input from a user and then runs only the command associated with the predefined choice, for example
IF "ON"
Backup Server
ELSEIF "OFF"
...
1
vote
1answer
29 views
Extracting Specific Variables from a | delimited .txt and extracting them to a new .txt
I have a .txt that is say 100,000 rows (observations) by 50 columns (variables), and the variables are | delimited. I would like to extract the 8th and 9th variables (or 7 and 8 if the indexing were ...
0
votes
1answer
29 views
When to process Markdown?
I have a flavored version of Markdown implemented in my social web application. Everything works, but my question is: when should you convert the user input (Markdown) into HTML? Before storing it in ...
0
votes
0answers
45 views
Best way to obtain user input from GUI and pass to function (C++/CLI)?
I've been working on a console application for over two years, and although the code is always being improved/extended, I thought it would be helpful to add a GUI to it. After some initial stumbling ...
0
votes
1answer
33 views
WPF input method for a 'tag list'
I'm looking for WPF component (if it exists) to input tags in a similar fashion to what StackOverflow.com provides when inputting tags for a question.
Does such a component exist? If not, what ...
-2
votes
3answers
47 views
reading input into array without hard coding
So I was thinking that maybe other people might have had this problem. I'm a total beginner .I am using java to program for android so I can test on my phone. When I read in inputs from my array,
...
-1
votes
1answer
42 views
Display the number of iteration in the input box of excel vba for every iteration [closed]
I have to display the input box with a message having the number of iteration in it. Please help.
Eg:I need the input box to display the message as "Please input Name: 1" for first iteration then
...
1
vote
0answers
33 views
Best practice: throwing Exception or using Validator on User Input
Recently I've been into multiple arguments on whether to throw an exception on false User Input.
Example: I'm trying to login though my account is not activated. As the programmer in an OO-language, ...
-3
votes
0answers
53 views
How a compiled object can store data? [closed]
Given a compiled object, an executable or a library, how it's possible to store data in it ?
I mean how it's possible to append and write data directly in a given file.
1
vote
1answer
52 views
c# Possibilities after userinput (textbox)
I'm not sure how to ask this so I will use an example:
Words: Soccer, Swimming, Swordfighting Tennis, Baseball, Basketball, Formule1, Fishing, Cycling, ...
Control: txtSports
When the user inputs ...
0
votes
0answers
7 views
Is there a program to make use of it as a caller ID and even possibly turn into advanced phone auto attendant features
I have a phone it input jack on my laptop I was wondering anyone recommend a program to make use of it as a caller ID and even possibly turn into advanced phone auto attendant features
0
votes
2answers
50 views
getElementById() and input form
I have a
function calcRoute() {
var start = document.getElementById('start').value;
}
And then a
<select id="start" onchange="calcRoute();">
<option value="somevalue">Dropdown ...
0
votes
3answers
41 views
how to loop user input and copy it to file until “exit” string in entered using C?
I want to write some small program that is getting strings from the user(using console) when max input is 100 characters , and when user pressed enter - it will copy the input to some file.
I want to ...
0
votes
1answer
24 views
Surface 2.0 SurfaceTextBox get text
I having a SurfaceTextBox with text from a database. The user can manipulate the text with the SurfaceKeyboard. But how do I get the new text the user entered? I looked and didn't finde any example.
...
2
votes
1answer
74 views
Ignore user-input when running a unix command from within Matlab
I have a Matlab program that runs different unix commands fairly often. For this question let's assume that what I'm doing is:
unix('ls test')
It happens to me quite frequently that I accidentally ...
0
votes
0answers
12 views
How do I take a user's input that is a decimal number and then later use that number in equations?
#!/usr/bin/env python 3.3
C=4.184
start=input("This program will assist you in doing calorimetry problems. Press any to get started.")
usrchoice=input("If you wish to solve a simple (coffee cup) ...
0
votes
0answers
54 views
Have program launch at startup as an option in Inno Setup
I have a simple Inno Script that installs my program, what I can't seem to get right is for Inno to ask the user if they want the program to start when windows starts.
I have the option to create ...
0
votes
1answer
35 views
Comparing Dates With User Input
I have found a statement that compares two dates to see if one is greater than another:
If Format(Date, "m/d/yyyy") > #1/1/2000# Then MsgBox "Okay"
That's basically saying if today is later than ...
0
votes
2answers
45 views
Reading only one character (avoiding newline), then a string (for implementing simple CLI
I need to implement a simple CLI, which will initially read one character, and then will read the 2nd, or even 3rd part of the command specified by character.
For example, these would be the ...
0
votes
1answer
32 views
Read in user input but have to distinguish from string/decimal/character in C
q - quit the program immediately.
r <int> - //does something
i <int1> <int2> - //does something
d <int1> <ind2> - //does something
t <int1> <int2> - //does ...
0
votes
3answers
143 views
Command line input in Python
Is it possible to run first the program then wait for the input of the user in command line.
e.g.
Run...
Process...
Input from the user(in command line form)...
Process...
-8
votes
1answer
48 views
JAVASCRIPT KYBOARD onkeydown HANDLER FUNCTION WORKS ONLY ONCE[SOLVED]
I created a chack keyboard click function instead of declaring event listeners all the time.
When you call it once it works but when i have two or more instances only the last one works right.
...
1
vote
1answer
302 views
input type=“file” accept=“image/*” doesn't work in phone gap?
I tried to make a android app using HTML + phonegap 2.6.0 which is support:
<input type="file" />
By default, if the HTML is open via android browser itself, it will show "camera" , "gallery" ...
0
votes
2answers
60 views
Please help me with this Ruby math calculator program
I wrote a program.
print "Radius = "
radius = gets.chomp
print "Height = "
height = gets.chomp
ans = (2 * 3.14 * (radius * radius)) + (2 * 3.14 * radius * height)
It won't work. This is the ...
2
votes
1answer
41 views
Taking keyboard input and using for variable events
I have a game that has a ship which can move in all 6 dimensions. All of the physics work but i am having trouble translating input from the keyboard into variable output. I would like the 4 engines ...
0
votes
3answers
58 views
Calling an objects' members using cin to get object name
I am trying to find a way to call an object's members, but using a user input to determine which object. So, I have 3 objects: obj1, obj2, obj3. I then ask a user to enter which object they want to ...




