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. ...
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. ...
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 to return a single value? If not, how do you recommend I achieve this effect? ...
Whether I can reduce the textbox width without using classes? <input type="text" maxlength="5" style="3px"/> ...
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 component to use? ...
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; /* Other stuff: font-weight, font-size */ } Surprisingly, I cannot select this input box by clicking on it in IE8. It works perfectly in Fir...
Hi, 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 the arraylist by the last name. The code I have entered so far is all under the main method:- public static void main(String[] args) ...
Hi, 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 use to increase this limit? ...
In VB6 (and earlier), is there a way to have the default response in an InputBox to be non-highlighted? ...
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 account (the code i am writing). They want people to enter their information but they dont want someone pressing down on the email input box to ...
Hi. I have this code : <form onSubmit="return checkTL();" method='POST' action='./index.php?general=example3' name='addtl' > <div class="sideon" id="sideline0"> <input type="text" id="inputside0" name="sides[]" class="inputTLS" maxlength="50" /> </div> <div class="sideoff" id="sideline1"> <input type="text" ...
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" type="checkbox" /> <input id="fieldname-3" name="field_name[value][3]" value="3" type="checkbox" /> I want to access this with jQuery like: $('input[field_name...