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
0 answers

Plotly interactive plot python: How to change text by changing the dropdown?

The line graph with the dropdown button can select the data by different district to show. However, I would like to add the text on the left-bottom corner of the plot to show the value (input_df5), and there is only one way that I tried that is…
1
vote
6 answers

Using MsgBox and get error msg 1004 when I select "Cancel" - Need the macro to just end normally

First I selected "Yes" to the question "Change Worksheet Name?". Then the message "Type new Worksheet Name" appears. Instead of typing in a new name and selecting "OK", I select the "cancel" button and my error messages are displayed. How do I…
JasperX99
  • 11
  • 2
1
vote
1 answer

Copy and paste graph of one PowerPoint presentation to another PowerPoint presentation with inputbox

Hello :) what I want to do is to have a Master document (PowerPoint) to use as template and personalize with graphics that are in another PowerPoint presentation. The master document on the code is "pre". The PowerPoint with the graphics is…
1
vote
1 answer

How to add a prefix to a input value and pass it to the backend as well in laravel?

This my Input field:
xyz.
Wakil Ahmed
  • 1,053
  • 1
  • 8
  • 16
1
vote
1 answer

How do I loop an input box one additional time if criteria is not met?

I’m trying to create a series of input boxes that will prompt for more information before executing the rest of the code. I’m stuck on the looping aspect. The first input box is for a start date. Valid entries will be a 6-digit numeric value only…
aubskabob
  • 23
  • 1
  • 7
1
vote
2 answers

How to make input box readonly conditionally in React

How do I make an input box readonly conditionally? I have a state value I want to check and if it is empty, I want the input box prop of readonly to be added to the input box. This is my implementation of this so far:
shonacoder
  • 61
  • 6
1
vote
1 answer

Line break in an input box?

I wrote a batch script in which an InputBox is required, first of all this is the code line: powershell -Command "& {Add-Type -AssemblyName Microsoft.VisualBasic; [Microsoft.VisualBasic.Interaction]::InputBox('Enter your command: [*here i want a…
user17524233
1
vote
6 answers

JQuery Mobile Datebox - How to remove the input box and show only the inline calendar?

Good Day all, I want to use datepicker to show the user particular dates that an event falls on. My game plan is to use datepicker as inline, show that it always shows and to pass the high lighted dates to it. My question is, how can I hide the…
rocketman889
  • 13
  • 1
  • 5
1
vote
2 answers

InputBox is not accessible on Delphi Prism after adding Microsoft.VisualBasic reference

I need to display an Input message box to gather information from the user. I am using Delphi Prism. I did try someone else's suggestion by adding Microsoft.VisualBasic reference to my program to get access to InputBox, but it didn't work. Complier…
ThN
  • 3,235
  • 3
  • 57
  • 115
1
vote
3 answers

Pass Input Box variable from one sub to another

I was reading a post by another where the need for a Global declaration wasn't needed. I have a Sub asking for the user to enter a value, in another Sub I use the entered value to Call other Subs based on their input. Am I close in my example? …
Paxton
  • 13
  • 2
1
vote
1 answer

Why did the InputBox method go, and why did MessageBox stay?

My A-Level programming project is unfortunately in vb.net. I remembered that InputBox was a method, so I tried it. It came back as undeclared. Eventually I found a forum where someone mentioned that if you import the Microsoft.VisualBasic namespace…
Joe Moore
  • 2,031
  • 2
  • 8
  • 29
1
vote
0 answers

Implementing an InputBox on NET CF

I'm developing an app for Windows Mobile. It contains one main Form and user UI is implemented with individual UserControls. When the user clicks on Menu > Ship Product, the ShipProduct UserControl is added to the main forms Controls array and is…
fixitchris
  • 90
  • 7
1
vote
1 answer

Update input box when outside is clicked in ReactJS

I am trying to update the database. So I have an input field that is disabled as default. So when you click, editing is enabled and when you click outside of the input field, it gets disabled again. What I am trying to do is update when you click…
magic bean
  • 787
  • 12
  • 39
1
vote
2 answers

How to store an input value as a variable in Pygame

I have an input box class in Pygame, in which I only enter numbers and what I want, is that every time I press ENTER this value gets stored in a variable to be used from another function. Thank you all in advance. This is the input box code: class…
Evaki
  • 23
  • 3
1
vote
2 answers

InputBox to enter time, with validation

I want when the user enters a value in a cell in column A an inputbox should pop up asking for the time. I want the output of that inputbox in column C in the same row as where the value was entered in column A. I want this to happen every time…
Larsvane
  • 15
  • 3