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
vote
2 answers

How can I make my script stop when clicked on the cancel Button?

I am working on a script that gives you prompts for copying whole folderstructures including the ACLs (permissions) My Question now is how can I make it so that when I click on the cancel button in the popup that it actually cancels? I am working…
1
vote
2 answers

Crash on email detection in TextInput on Xiaomi devices running android 10

When we type email address on input box we are getting error as follows: java.lang.NullPointerException: Attempt to invoke direct method 'void android.widget.Editor$SelectionModifierCursorController.initDrawables()' on a null object reference at…
1
vote
0 answers

VBA InputBox that allows user to search for a column header name, then filter on everything under the header name

I want the user to be able to input the sheet they would like to go to, then allow the user to search the column headers name, filter the column, and run analysis to ensure everything under that particular column header name is blank, then provide a…
Dan
  • 11
  • 1
1
vote
1 answer

vbscript output in Hebrew

I have this VBS file: Dim retval retval = InputBox("חיפוש - הכנס את מילת החיפוש","Setting Membership Club") If IsEmpty(retval) Then 'cancelled WScript.Echo ("EXITSP1") Else 'something has entered even zero-length WScript.Echo…
1
vote
3 answers

VBA Project creating a subroutine

I have the following task: "Create a subroutine called WherePutMe that asks the user for a row number and column letter then places the 2,2 position of a selection into that cell. So far I did Sub Whereputme() Dim x as integer, y as string x=…
blackkilla
  • 31
  • 1
  • 3
1
vote
2 answers

JavaScript - How to Insert Number to InputBox by using Button

Please help, How to insert number into inputbox by Id. Would like to insert for example number (5) into this particular input box when button clicked. So push the "Insert" button number 5…
user754443
  • 47
  • 1
  • 7
1
vote
2 answers

Variable in an AutoIt script only recognizes the first character from an input box

I am trying to create script that is able to recognize a multi-character variable (a number in xx.xx format) after entering into input box. After entering the variable in xx.xx format into the input box, the variable will only show up as a single…
VY VY
  • 19
  • 2
1
vote
0 answers

how to disable exit on inputbox?

i have a code that ask for a password. i need to disable the exit button "X". here is the code i'm using: Dim myInputBoxVariable As Variant myInputBoxVariable = Application.InputBox(Prompt:="", Title:="PLEASE ENTER PASSWORD", Default:="Enter…
Byron
  • 61
  • 1
  • 11
1
vote
2 answers

Selecting a variable range and replacing blank fields with value "NA"

I would like to have a button in my Excel sheet that: 1) Asks me to select the range I want to use 2) Changes the blank cells found in this range to a fixed value ("NA") I could find how to get a box asking me to select a range, but not a solution…
1
vote
0 answers

The InputBox from Microsoft.VisualBasic does not render on my system

I am experiencing the most peculiar thing. The InputBox from Microsoft.VisualBasic is broken and does not seem to work at all on my Windows 10 machine. No matter what I try it will not show up. When I compile the following code and run it on my…
Jochem Stoel
  • 1,371
  • 1
  • 13
  • 23
1
vote
1 answer

How to insert date into return Text string on VBA

We use a formatter every day for a set of our files. The file naming convention used to be "XX000". Now, the files are named like this: "XX000-YYYY-MM-DD". I want to be able to add a date function to the VBA code so users can still enter the basic…
1
vote
2 answers

How to get "cancel" button on InputBox to quit processing instead of returning empty string?

I have a non-VBA program that takes user input from a series of InputBoxes activated by a loop. I need it so that, if the user clicks the "cancel"button, it breaks out of the loop. Unfortunately, the "cancel" button doesn't do this, and instead…
Ethan Malloy
  • 555
  • 1
  • 4
  • 16
1
vote
0 answers

Is there a way in C# to set Microsoft.VisualBasic.Interaction.InputBox TopMost = true;

My windows form can sometimes have TopMost set to true. If TopMost is set to true, and the Microsoft.VisualBasic.Interaction.InputBox opens in the wrong spot it will display behind the form. I don't want to set the form's TopMost property to false…
1
vote
4 answers

JQuery Input box focus problem

I want to check some condition on blur of input box in jQuery. Once I lose focus from Input box I am not able to get focus again to that box. Code: if ($("#Amount").val() < 10000) { alert('The minimum amount is $10,000.'); …
Anvesh
  • 309
  • 1
  • 8
  • 24
1
vote
2 answers

Extract data string from an array and assign them to a variable by concatenation in PowerShell

I have an array of objects like: $arrayServ = New-Object System.Collections.ArrayList(,$serv) this array contains some objects like: name prefix tenants ---- ------ ------- …