Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
input-box
- Page 1
Re: Input Box
Programming
Software Development
10 Years Ago
by djjeavons
Hi I don't belive the
input
box
supports this. You could however create a form that has a text
box
on it with it's PasswordChar property set and use this in place of the
input
box
. HTH
Re: Input box
Programming
Web Development
11 Years Ago
by lloydsbackyard
by the way, in addtion, in the
input
box
i need to
input
the year. a year is only 4 digits but i can type more than 4 digits. is there anyway to limit the number of digits or characters to be entered to 4?
input box
Programming
Software Development
18 Years Ago
by stan yost
I have an
input
box
in my program and I want to be able to control the flow when the 'cancel' button is pushed. Any help would be appreciated.
Input box
Programming
Web Development
11 Years Ago
by lloydsbackyard
How to set an
input
box
that will only accept numeric values?
Input Box
Programming
Software Development
10 Years Ago
by Bashar_1
hi all this code give me
input
box
i want to make the Characters like this ******* Dim x As String x = InputBox("inter password") If x = Label1.Text Then Me.Hide() frm_chose.Show() Exit Sub End If MsgBox("try again")
Re: Input Box
Programming
Software Development
10 Years Ago
by mridul.ahuja
This is not possible in a normal
input
box
. You need to make your own inputbox. Make a **.bas …
Input box not accepting the cursor click...
Digital Media
UI / UX Design
7 Years Ago
by Mauricio_5
…some reason when I click on my simple
input
box
, the
input
box
does not accept focus. Has anyone has a….com/digital-media/ui-ux-design/threads/127910/
input
-
box
-not-accepting-focus#post2228704) ... but I don…'); ?>" ></textarea> <
input
type="submit" class="wpresidence_button agent_submit_class"…
input box validation
Programming
Software Development
16 Years Ago
by Trekker182
…trying to validate against someone entering letters into an
input
box
. Here is the code I have so far that…entered is numeric. I don't even the get
input
box
anymore. As soon as I take it out, it… works fine by poping up the
box
each time a 0 or a negative number is… a better way? I have to use a
input
box
so I can't don't have the option…
Input Box Validation
Programming
Software Development
17 Years Ago
by petro
…so that the user can only enter integers in the
input
box
and no letters (if they do the program crashes)…boxes 'asks the user to enter a number via an
input
box
Case 3 MsgBox("Begin execution", MsgBoxStyle.Information)…'asks the user to enter another number via an
input
box
Thanks!
Re: input box validation
Programming
Software Development
16 Years Ago
by rapture
I think since you "can't" use textbox and have to use
input
box
then your best bet is to switch it to a string and then try to parse the
input
. If you can then it's numeric and you can go with it but if it can't be parsed then it's not numeric.
Input box in VS
Programming
Software Development
14 Years Ago
by virusisfound
… in VS we don’t have the facility of
input
box
. The
input
box
is really very helpful if we want to take some…
input
from user then we can use it then why this…
Input box not accepting focus...
Digital Media
UI / UX Design
16 Years Ago
by Mapper99
For some reason when I click on my simple
input
box
, the
input
box
does not accept focus. Has anyone seen this …</br> <P ALIGN=CENTER> <
INPUT
TYPE = "TEXT" VALUE ="Enter a search …="clearDefault(this)" onclick="set_focus()" > <
INPUT
TYPE = "Submit" Name = "Submit1" VALUE…
Re: Input box not accepting focus...
Digital Media
UI / UX Design
16 Years Ago
by Mapper99
… Mike. All I am trying to do is get the
input
box
to start editing if I place my cursor in it… tab to highlight it first. If I click in the
input
box
when there is text in it, I can edit. When…
Re: input box validation
Programming
Software Development
16 Years Ago
by Trekker182
Thanks for the suggestion, I went ahead and tried it . [CODE]While carpetArea <= 0 And Not IsNumeric(CSng(carpetArea))[/CODE] But it ended up doing the same thing...I click on a carpet selection in the list
box
and then click install and don't get a
input
box
prompting for area anymore. What exactly does CSng do?
Re: input box validation
Programming
Software Development
16 Years Ago
by Trekker182
Makes sense but now when I try it, the
input
box
does come up, but if its a negative number or 0 it just accepts it. Also, if it's a letter it still crashes with an invalid cast exception.
Re: input box validation
Programming
Software Development
16 Years Ago
by Trekker182
…. Negative numbers, 0 and letters entered should keep looping the
input
box
to keep coming up until the cows come home. Here…
Re: input box validation
Programming
Software Development
16 Years Ago
by Trekker182
… about the error and then just present them with another
input
box
again?
Re: Input box in VS
Programming
Software Development
14 Years Ago
by Geekitygeek
…#" language. It is very easy to roll your own
input
box
in C# which is something i did a while back… appropriate dialogresult value and add a property to retrieve the
input
value. Feel free to ask if you need more detail…
Re: Input box in VS
Programming
Software Development
14 Years Ago
by farooqaaa
… use: [CODE]// this will hold the value retrieved from the
input
box
string value = string.Empty; DialogResult result = InputBox("Username prompt…
Input Box Image
Digital Media
UI / UX Design
14 Years Ago
by feoperro
… tell me how to make an image next to an
input
field? Something like what you would find at [URL="…;]http://twitter.com[/URL] when looking at the search field
input
box
, you'll notice a picture of a magnifying glass - How…
Re: Input Box Image
Digital Media
UI / UX Design
14 Years Ago
by Metamorphosis
… glass. He just asked to have an image inside the
input
box
. As for the last part of my post it was…
Re: Input box
Programming
Web Development
11 Years Ago
by JorgeM
…; This will work only in browsers that support this HTML5
input
type. Next is JavaScript... function isNumber(e) { var char = (e… < 48 || char > 57)) return false; return true; } <
input
type="text" name="number" onkeypress="…
Re: input box
Programming
Software Development
18 Years Ago
by stan yost
… Typed Stuff */ msgbox retval end if[/CODE][/QUOTE] The message
box
has two buttons - 'OK' and 'Cancel'. How do I access…
Re: input box
Programming
Software Development
18 Years Ago
by stan yost
[QUOTE=stan yost;251757]The message
box
has two buttons - 'OK' and 'Cancel'. How do I access the flow from the 'Cancel' button. Thanks[/QUOTE] Guess I need to be told twice. Thanks!
Re: Input box
Programming
Web Development
11 Years Ago
by pritaeas
You'll need to use some Javascript, unless [HTML5](http://www.htmlgoodies.com/html5/tutorials/whats-new-in-html5-forms-handling-numeric-inputs-using-the-number-and-range-
input
-types.html) is supported.
Re: Input box
Programming
Web Development
11 Years Ago
by JorgeM
Add the maxlength attribute to the
input
element.
Select a web page input box prior to settings value
Programming
Software Development
11 Years Ago
by imperator
…create a program that automatically inputs text in a webpage
input
box
. It inputs the text properly, but first it needs…you normally first click on the
input
box
, then
input
the text. In that way the
box
gets focused and the written text …quot;Electricien") Any suggestions on how to focus the
box
so it receives data properly? The site I am …
Which part of this code is the Input Box?
Programming
Web Development
16 Years Ago
by ChrisJ
… tell me which part of this code is the
Input
Box
(browse
box
field) and the Submit Button, please? Thank you.…enter_a_number"><br> Checkbox values: <
input
type="checkbox" value="1" name…JAVASCRIPT" onsubmit="return Validate();"><
input
type=hidden name=todo value="login">…
HELP Needed on input Box instead Select Box
Programming
Web Development
15 Years Ago
by ramesh_
… from drop down. I need select
box
to be replaced by
input
box
where i can enter text (title)…!=-1 ) { if ($autodirect ==1) echo "<
input
type='submit' ".$style." id='submit' name='submit'…quot;' />"; } else { echo "<
input
type='submit' ".$style." id='submit' name='…
Change the title of an input box
Programming
Software Development
12 Years Ago
by bobys
…to change the Title of an
input
box
( Left Upper Corner). Lets say we have the
input
box
: x=
input
("blah blah blah"…;) if we run that the title of the
input
box
would be …like "Python
input
" or something, isnt in ? So …
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC