Top "Textbox" questions

A textbox is a graphical user interface element which allows for simple input text, usually only a single line of text.

How to capture Enter key press?

In my HTML page, I had a textbox for user to input keyword for searching. When they click the search …

javascript textbox keypress dom-events onkeypress
Add padding to HTML text input field

I want to add some space to the right of an <input type="text" /> so that there's some …

html css text input textbox
Enter key pressed event handler

I want to capture the text from the textbox when enter key is hit. I am using WPF/visual studio 2010/.…

c# wpf user-interface textbox maskedtextbox
How do I automatically scroll to the bottom of a multiline text box?

I have a textbox with the .Multiline property set to true. At regular intervals, I am adding new lines of …

c# winforms textbox scroll
How to add a line to a multiline TextBox?

How can i add a line of text to a multi-line TextBox? e.g. pseudocode; textBox1.Clear(); textBox1.Lines.Add("1000+"); …

c# winforms textbox
Disable a textbox using CSS

How to disable a textbox in CSS? Currently we are having a textbox in our view which can be enabled/…

css textbox
Open file dialog and select a file using WPF controls and C#

I have a TextBox named textbox1 and a Button named button1. When I click on button1 I want to browse …

c# wpf textbox openfiledialog
Watermark / hint text / placeholder TextBox

How can I put some text into a TextBox which is removed automatically when user types something in it?

c# wpf textbox watermark hint
How to trigger HTML button when you press Enter in textbox?

So the code that I have so far is: <fieldset id="LinkList"> <input type="text" id="addLinks" …

html button input textbox
WPF: simple TextBox data binding

I have this class: public partial class Window1 : Window { public String Name2; public Window1() { InitializeComponent(); Name2 = new String('a', 5); myGrid.…

wpf data-binding textbox