user-input Questions
2
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 w...
Jibber asked 2/5, 2013 at 7:19
5
Solved
I am trying to learn a few things without jQuery. Here is one of the challenges I'm facing.
I have a fixed contenteditable div that when adding text to the div, if the scrollHeight exceeds the cli...
Superscription asked 3/4, 2013 at 22:1
9
Solved
can user is able to give manual input while running selenium IDE script?
For ex. If there is name field then can we open input box everytime script runs so that user can give his input for name fie...
Huckaback asked 19/1, 2012 at 6:29
2
Solved
I'm trying to use a sidebar with a form to get user input. The code is bound to a Google Sheets file.
Code.gs:
function onOpen() {
SpreadsheetApp.getUi()
.createMenu('Custom Menu')
.addItem('Sh...
Kathlyn asked 8/3, 2018 at 21:3
5
Solved
I'm looking for the best way to take a simple input:
echo -n "Enter a string here: "
read -e STRING
and clean it up by removing non-alphanumeric characters, lower(case), and replacing spaces wit...
Rale asked 18/9, 2008 at 2:56
4
Solved
I am on java 6. Using DataInputStream in = new DataInputStream(System.in); to read user input. When the readLine() is deprecated. What is the work around for reading user value?
DataInputStream in...
Locular asked 10/4, 2011 at 11:17
1
Solved
LIKE operator with user-provided input
The Postgres LIKE operator is useful for offering a rudimentary search on your table's row to the user. However, user-provided input for the LIKE operator ne...
Fifteen asked 16/11, 2019 at 22:6
4
Solved
Is there a way for the user to input a binary number in C or C++?
If we write something like
int a = 0b1010;
std::cout << a << std::endl
Then the output comes out to be 10 (when usi...
Bifacial asked 22/8, 2014 at 7:5
4
Solved
I'm developing an Android 2.2.2 application for a client and he wants to do the following:
Now I have a button with an onClick event but he doesn't like, he wants to dectect when user release the ...
Notwithstanding asked 27/7, 2012 at 15:2
1
Solved
In my app I need the user to give me a duration, I am thinking about seconds and minutes. So after pressing a button i want something like a Pop-Up Window in which the user then can select a durati...
Lour asked 28/9, 2019 at 10:28
4
I want the user to enter a Social Security Number in the format ••• •• ••••.
The user types the first 3 numbers, then I append a space manually. Then they enter 2 more numbers and I manually append...
Deary asked 15/7, 2016 at 17:16
2
Solved
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 make the prog...
Cipango asked 17/5, 2013 at 23:28
1
Solved
How do you get data from an input field inside an Angular material dialog?
This is my code:
TS
import { Component, OnInit, Inject } from '@angular/core';
import { MatDialog, MatDialogRef, MAT_DI...
Kerek asked 10/7, 2019 at 23:55
19
Solved
Many of us need to deal with user input, search queries, and situations where the input text can potentially contain profanity or undesirable language. Oftentimes this needs to be filtered out.
Wh...
Factor asked 7/11, 2008 at 20:19
12
Solved
Our customer would like to know who is online and currently using the custom application we wrote for them. I discussed it with them and this does not need to be exact, more of a guestimate will wo...
Dementia asked 6/10, 2008 at 13:19
2
Solved
I have a class that can be created from several arguments in Haskell which requires some complex validation of those arguments. Currently I have something like
makeAThingExcept :: String -> Str...
Chainey asked 7/11, 2018 at 14:31
4
Solved
I want there to be a textbox on my screen(like the one i'm typing in now) that you can type in then click a submit button and it sends whatever you typed in the box to javascript and javascript pri...
Ketcham asked 9/3, 2013 at 0:9
1
Solved
In my node script, I am waiting for the user to press enter at some point:
console.log("Press enter to continue...");
await new Promise(function(resolve, reject) {
process.stdin.once("data", func...
Lowestoft asked 14/1, 2019 at 13:45
3
Solved
I would like to give the user an opportunity to enter an input, and use a default value if they do not enter anything after 5 seconds.
Here's for the input part:
input <- readline(prompt="Do ...
Drava asked 9/1, 2019 at 14:42
7
Solved
I am trying to write a function to clean up user input.
I am not trying to make it perfect. I would rather have a few names and acronyms in lowercase than a full paragraph in uppercase.
I think t...
Mur asked 21/3, 2011 at 20:46
8
I'm trying to write a program in which a number starts from 0, but when you press any key, it gets incremented by 1. If nothing is pressed, it keeps on decreasing by 1 per second until it reaches 0...
Nitpicking asked 9/10, 2018 at 7:46
3
Solved
I'm using Python 3. In my application, the use can input a regular expression string directly and the application will use it to match some strings. For example the user can type \t+. However I can...
Numen asked 5/8, 2018 at 4:0
2
Solved
New to shiny and struggling with this for more than two days now.
I have created an application where the user loads .csv data file and chooses one or more variables whose names appear in the appli...
Eggbeater asked 31/7, 2018 at 20:13
1
Solved
Normally, install.packages(..., type = "both") requires user input if there is a package that needs to be built from source.
For example (currently, with R 3.5.1), install.packages(c("feather", "t...
Crassus asked 25/7, 2018 at 4:8
3
Solved
I'm aware of a simple pop-up function for PowerShell, e.g.:
function popUp($text,$title) {
$a = new-object -comobject wscript.shell
$b = $a.popup($text,0,$title,0)
}
popUp "Enter your demogra...
Felicitasfelicitate asked 29/5, 2015 at 16:11
© 2022 - 2024 — McMap. All rights reserved.