Questions tagged [inputbox]

The tag specifies an input field where the user can enter data. elements are used within a

element to declare input controls that allow users to input data. An input field can vary in many ways, depending on the type attribute.

The most important form element is the element.

The element is used to select user information.

An element can vary in many ways, depending on the type attribute. An element can be of type text field, checkbox, password, radio button, submit button, and more.

<input type="text"> defines a one-line input field that a user can enter text into.

<input type="password"> defines a password field.

<input type="radio"> defines a radio button: Radio buttons let a user select ONLY ONE of a limited number of choices.

<input type="checkbox"> defines a checkbox: Checkboxes let a user select ZERO or MORE options of a limited number of choices.

<input type="submit"> defines a submit button.

These are types of input box, for more details of its attributes and properties please refer w3c

475 questions
-1
votes
1 answer

Inject a button close to input box

I have this line and trying to inject a button at the right side of the textbox... Please advice how can I do it in JS? It's an extension for chrome I'm going to find every instance of the ID and…
Jessica Ray
  • 65
  • 2
  • 5
-1
votes
3 answers

ASP.net MVC inputbox

Hey guys i'm stuck on an issue and I searched the site before qnd found solutions but I can't seem to find the problem in my code. So I was hoping somebody more experienced could help me out here. I want to put something into an input box on the…
Tourna
  • 15
  • 1
  • 6
-1
votes
1 answer

Dynamic number of input boxes Tkinter?

Is it possible to make and use a number of input boxes in a tkinter program, based on user input; e.g. I run the program, I tell the program I need 6 inputs, and it creates 6 input boxes for me to then use for my data? If my program tracked clothes,…
-1
votes
1 answer

How do a semi center, with input boxes right-aligned and text left-aligned

I'm just a beginning programmer. I've learned the basics of javascript and css. I'm trying to find out how I can get a webpage with this layout: I can center the h1. I everything below the h1 in
so that the reset button would work. but I…
-1
votes
1 answer

Creating many small forms as a substitute for message box or input box

Am I practicing a good coding standard in .NET if I will create so many small forms that acts like a customize message box or input box? I think that it will be hard to maintain it if I do it like that, but there isn't any way to customize a message…
Cary Bondoc
  • 2,923
  • 4
  • 37
  • 60
-1
votes
3 answers

C# How to search the index in an Array to find the value

I have been noodling around in C# and I am doing well so far but I am trying to find out how to Search an index in a multi dimensional array. I have an array which is for products made in each day. This displays the products made each day for each…
-1
votes
1 answer

Excel Inputbox Function with conditions

Background info: Column A = Last Names, Column B = First Names, Column C = a drop down box with a list of options determining whether the person listed in A1B1 has a certain status(active rep, disaffiliated, etc) there are 5 or 6 In column D, I…
JAFO
  • 1
-1
votes
1 answer

Filtering With Multiple Inputs from InputBox

I'm trying to filter rows (keeping only values inputted) with multiple inputs to InputBox. With the values inputted, I want to create an array with which to AutoFilter my data. What I have so far is below. I'm stuck at splitting the inputs into an…
bigdayang
  • 1
  • 1
-1
votes
1 answer

C# Inputbox string value

I'm creating a login that saves data on a database. How do I declare the Name entered to the string value as name so when I say .Show it returns the name I typed in? private void btnLogIn_Click(object sender, EventArgs e) { string input =…
-1
votes
1 answer

Copy email address from one input form to another—different pages

I am making a website with a place to type in an email address to sign up for a mailing list. Once GO has been pressed, another page shows up with another email input and another GO button. Is it possible to somehow grab the first email address…
user2373912
  • 185
  • 1
  • 3
  • 11
-1
votes
1 answer

Is it possible to use one InputBox for two functions?

Hi is it possible to use one InputBox to have two functions? Otherwise I have to fill in information twice. I want it to filter (that already works) and also want to show it in a cell. FilterCriteria = InputBox("Code") Sheet3.Range("B" & n).Value =…
AMWHoek
  • 33
  • 3
-1
votes
1 answer

vb.net if inputbox is greater

I'm having trouble checking if input is less then or grater 3 characters. should i use if statement or while loop?. and also how to store all the data in listbox after inputbox entered: For Num = 1 To CInt(nudPassengers.Value) Dim userName As…
iks lake
  • 15
  • 1
  • 6
-2
votes
1 answer

How to create a Input box with a functioning cancel button and a ability to have a default value

When using a InputBox I can add a default value for the text field. Like this: inputbox('value Enter', 'enter a value', 'default value'); Unfortunately, the cancel button can not be used properly. When cancel is pressed, the inputbox gives the…
Codex
  • 101
  • 1
  • 11
-2
votes
3 answers

How to use result of input box as a worksheet name in VBA code

I'm really new at VBA and have learned what I know so far from internet searches, but I cannot find a resolution to my issue. I have two workbooks, one with information on all of my company's current projects and another with just the active…
RaeB
  • 1
  • 1
-2
votes
1 answer

Visual Basic InputBox Wait time

Is it possible to Program in VB so that program wait for 10 seconds for user input? If no input entered, Program process with default value after 10 seconds. If yes, then how to program.
Rajesh
  • 1
1 2 3
31
32