Tagged Questions
The inputbox tag has no wiki summary.
12
votes
12answers
11k views
Input boxes with transparent background are not clickable in IE8
I have an absolutely positioned input box in a form. The input box has transparent background:
.form-page input[type="text"] {
border: none;
background-color: transparent;
/* ...
3
votes
2answers
595 views
Overcome VBA InputBox Character Limit
The current function I use to collect text InputBox can't accept more than 255 characters apparently, and I need to be able to collect more than that? Is there a parameter or different function I can ...
2
votes
2answers
64 views
Detecting Cancel being pressed in a VB6 InputBox
I'm building a VB application that accepts numbers in the beginning. I want to be able to exit if the user presses the cancel button in any of the input boxes.
The code is :
Private Sub ...
2
votes
2answers
187 views
AutoIt Scripting - Variable only recognizes first character from 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 ...
2
votes
6answers
107 views
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 ...
2
votes
5answers
1k views
Prompting a user with an input box? [C++]
My goal is to simply use a pop-up box to ask the user for an input. I've searched around quite a bit and pretty much all the results say that creating a messageBox is really easy:
MessageBox (NULL, ...
2
votes
2answers
528 views
jQuery access input field by name[value][id]
I have some HTML code like this:
<input id="fieldname-1" name="field_name[value][1]" value="1" type="checkbox" />
<input id="fieldname-2" name="field_name[value][2]" value="2" ...
2
votes
2answers
313 views
Is it possible to disable autocomplete?
I know i shouldnt do it but it may be easier then explaining to the clients that you should do it through the browser. They have a public computer and a server running on the machine in an admin ...
2
votes
3answers
4k views
Delphi InputBox for password entry?
Inputbox:
answer:=Inputbox('a','b','c');
works good, but I'm looking for a masked one, like a password box where you only see little stars instead of the typed characters.
1
vote
2answers
59 views
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 ...
1
vote
3answers
235 views
Only accept number from 1 to 9 Using JavaScript
Would like to know how to only accept number to be entered into inputbox from 1 to 9 and if entered for example 0 give alert message, sorry not a valid number.
please check my function that i have ...
1
vote
2answers
164 views
JavaScript - How to Insert Number to InputBox by using Button
Please help, How to insert number into inputbox by Id.
<input name="table1" type="text" size="1" id="musicstock1"/>
Would like to insert for example number (5) into this particular input box ...
1
vote
5answers
667 views
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 ...
1
vote
2answers
149 views
Which control to use for quick text input (inputbox)?
I need a quick text input dialog box (MessageBox with a single text box in it). Is there any control available or should I use a form?
I just want user to enter some ID. And in other occasion I want ...
0
votes
2answers
24 views
JQuery simulate enter on input field
I've got a form, where i put information in with greasemonkey.
The form got no ID or Class...
When you manauly put something in the inputbox, and press enter, it get's submitted and you're off... I ...
0
votes
0answers
15 views
Open an Excel Application.InputBox with a pre-selected range (C#)
So my problem is that I'd like to open a "Microsoft.Office.Interop.Excel.Application.Inputbox" dialog with a pre-selected range (based on the user's previous selection) so that the user may be able to ...
0
votes
1answer
38 views
Converting Input type in JSP from text to check box
I have a text box in JSP as below:
<INPUT TYPE="text" readonly="readonly" NAME="IssueFlag" ID="IssueFlag" SIZE="45" class="allcaps" maxlength="49" value="<%=mySearchTO.getIssueFlag()%>">
...
0
votes
1answer
64 views
pass inputbox value as a querystring to URL
I have an inputbox and a link for SEARCH styled to look like a Search button. When a user types in a keyword in the inputbox, I want to grab that keyword, pass it, and append it as a search query ...
0
votes
1answer
82 views
excel vba: check negative number in inputbox
I am using an inputbox the get a number from a user. I want to avoid not allowed input and am stuck with negative numbers. The only input which should be processed is an integer between 1 and 500. I ...
0
votes
1answer
99 views
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 ...
0
votes
1answer
321 views
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 ...
0
votes
1answer
34 views
Input box value display , must not allow user to alter
Hi all I'm processing membership with standard Pay to membership which is predefined.
After selecting the membership option the standard Pay is displayed in the membership form.
I don't want the ...
0
votes
0answers
105 views
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 ...
0
votes
1answer
111 views
VB Script InputBox query
Im just trying to make a simple input script something like this where "FJobName" is the variable I want to insert in raiseevent string "FJobName". Any ideas, what I got aint workin?
Dim FJobName, ...
0
votes
2answers
102 views
How to Reset data inserted into Inputbox Using Javascript
I`m Learner
Thank you all for helping me :)
How can i reset all the inputbox by having reset function button which give the ability to re-enter the original number to the inputbox, for example i ...
0
votes
2answers
139 views
how to write a proper selector for what is inside input box?
I have a form of inputbox and i need to write a good selector. I need to assign attributes only to what is inside inputbox. form looks like this:
<label></label>
<input type="text" ...
0
votes
2answers
429 views
option in dropdown box that changes an input box
Hellp,
I am working on developing an online donation site for my page. I'd like the user to have a dropdown box with payment options ($5, $10, $20, Other). I've currently set it up to where it ...
0
votes
1answer
340 views
get values from query string for input box and drop down menu
Hi I have the following page with a query string:
http://userpages.umbc.edu/~andrade1/querystring/querystring/example1%20-%20Copy.html
when I click show and go to the receiving page which is here:
...
0
votes
2answers
411 views
Input Box in an MFC CWinApp
I want to use a simple input box in vc++ mfc. I did created a dialog called IDD_DIALOG1, and added a text box. I added a public variable for the input box and created a class call CInputDlg. Now I use ...
0
votes
3answers
701 views
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) {
...
0
votes
2answers
371 views
inputbox to array vb .net
i have a program here that will solve an expression..
first i need to input the expression in textbox that will be store to CharArray and then substitute the variables to integer by using input ...
0
votes
2answers
742 views
Dynamically increasing textbox height? [closed]
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 ...
0
votes
2answers
144 views
Jquery - Send only some value from a form
<form onSubmit="return checkTL();" method='POST' action='./index.php?general=example3' name='addtl' >
<div class="sideon" id="sideline0">
<input type="text" id="inputside0" ...
0
votes
2answers
210 views
VB6: make default response in InputBox not highlighted?
In VB6 (and earlier), is there a way to have the default response in an InputBox to be non-highlighted?
0
votes
2answers
559 views
Sorting an arraylist in Java language
I have an arraylist set up. I have input instuctions set up too, so that the user can enter one string, then one integer, then one string (the first name, the age, and the last name).
I need to sort ...
0
votes
5answers
955 views
Are there any way to use delphi inputbox with multiple values?
I want to get multiple different types values (time, pressure, name, ...) from user. and I want to customize my inputbox. But it take only one value.
Are there any way to solve this situation, or any ...
0
votes
2answers
2k views
how can Reduce the textbox width?
Whether I can reduce the textbox width without using classes?
<input type="text" maxlength="5" style="3px"/>
0
votes
3answers
2k views
Does ASP.NET have the equivalent of VB's InputBox function?
VB has a function InputBox() that will prompt the user to enter a single value, then click OK.
Is there a parallel functionality in ASP.NET, that will get the browser to pop up some kind of input box ...
-1
votes
2answers
241 views
Don't reset form values after submit
After giving a preview by php header code, I want to not reset the input boxes? Thanks.
This is my simplified code:
#php Code
if($_POST['pre']){
$tag = $_POST['tag'];
$link = ...
-1
votes
5answers
396 views
How to Check if Value equal to Number 1 dont Send JavaScript [closed]
I would like to know if Value was equal to 1 don't send it.
function rdcal(){
document.getElementById("rd1").value = 8;
document.getElementById("rd2").value = 0;
}
If Value = 0 Dont Do ...