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
2
votes
1 answer

How to change the value output of a autocomplete into the label output in jquery?

I'm starting to learn jQuery. But I can't find the solution to this "simple" problem? When I choose a "label" in my autocomplete inputbox, it eventually displays the "value". But I want the "label" to stay in that input box and the "value" I want to…
2
votes
1 answer

How to change the size of an input box in ms access 2003

the msg box was prompted with code : StrInput = InputBox(Prompt:=strMsg, Title:="Location of Files", XPos:=2000, YPos:=2000) im not sure how to change the size of the box. i want to because my strMsg is quite logn and doesnt look nice in a small…
Chaostryder
  • 223
  • 2
  • 8
  • 18
2
votes
2 answers

Range object InputBox problem (empty value)

I have a macro that requires user to select range, and then it carries on: Dim rng As Range On Error Resume Next Set rng = Application.InputBox("Select a cell", "Make it happen!", Type:=8) And when range is selected, everything works great. But…
ch1zra
  • 171
  • 15
2
votes
2 answers

Change inputbox default to the current input

I am trying to write a macro which will re-set the inputbox default value to be the last value inputted, so if I type "2" in the inputbox below, the default will change to 2, for the next time the macro is run. Only until the workbook I am running…
Piecevcake
  • 195
  • 1
  • 12
2
votes
1 answer

Force VBA to display currently-selected cells when prompting user to select a range with Inputbox in Excel

I know that I can use Inputbox to prompt the user to select a range Set rng = Application.InputBox( _ Title:="Number Format Rule From Cell", _ Prompt:="Select a cell to pull in your number format rule", _ Type:=8) However when this code is…
Freelensia
  • 402
  • 6
  • 18
2
votes
6 answers

input box in asp.net c#

I need to create a simple input box on my website in C#. It should pop up, when i call it in the code like that String input = InputBox("Name the file"); and then I need the use string the users enters later in the code In a .net application, it…
tiqz
  • 147
  • 1
  • 2
  • 8
2
votes
2 answers

In C# is there a way to shorten reference calls like Microsoft.VisualBasic.Interaction.MsgBox() to something like myMsgBox()?

I'm new to c# so I apologize if this is a stupidly obvious question, or if I worded it in a bad way. I'm working on a VC# project that requires the use of the MsgBox() and InputBox() methods pretty frequently, and it's getting frustrating to either…
blitzilla
  • 31
  • 2
2
votes
2 answers

Dynamically increasing textbox height?

Possible Duplicate: Autosizing Textarea Hello all, I am trying to solve a problem and getting absolutely no where with it. What I am trying to do is dynamically change the height of an inputbox when the users text overflows it's width (sorta…
WeaponsTheyFear
  • 71
  • 2
  • 2
  • 9
2
votes
3 answers

How to add a tooltip on inputbox dynamicaly in angular 2

I have an input box and I want to show a Tooltip message on hover on input box, which will be based on the response we get from service. If service response is 'true', the message in tooltip will be "true message" and if service returns false then…
Er Vipin Sharma
  • 2,519
  • 8
  • 22
  • 32
2
votes
3 answers

If Statement with an InputBox - Not Working

I am trying to write a macro that looks at a cell and tells me if it's empty, and if it is, open up an input box to fill in the cell. The below code is not opening the message box regardless if the cell is empty or not. C37 IS A MERGED CELL which I…
ladymrt
  • 85
  • 3
  • 16
2
votes
1 answer

How to make a vbscript loop in loop go to start of code

When running this code; varCheck=True Do While varCheck Pass=InputBox("Enter Password") Do If IsEmpty(pass) Then WScript.quit Exit Do End If If Pass = "123" Then varCheck=False …
Curious George
  • 71
  • 1
  • 1
  • 9
2
votes
6 answers

JQuery Checkbox Handling

I have a simple question about Jquery and checkboxes. I have never worked with JQuery before but basically I have a checkbox and it will be set to "checked" by default when the user enters the page. I want jquery to detect that it is checked which…
Beth
  • 21
  • 1
2
votes
2 answers

jQuery access input field by name[value][id]

I have some HTML code like this:
FLY
  • 2,379
  • 5
  • 29
  • 40
2
votes
1 answer

How can I create a multi-line input box

I'm trying to create an input box in VB6 where I will be able to include spaces in the PROMPT. I've tried to do the same thing I do with MSGBOX but it's not letting me do VBCRLF. here's what i'm looking to do This company has more than 1…
BobSki
  • 1,531
  • 2
  • 25
  • 61
2
votes
2 answers

Jquery - Send only some value from a form

using the checkTL() function, i need to send to the server (for example) only the input value into div with class "sideon". So, in the example, i need to get (server side) only the value of inputside0 and inputside3. How is possible this? cheers
markzzz
  • 47,390
  • 120
  • 299
  • 507