Tagged Questions

A textbox is part of a user interface and allows the user to input text.

learn more… | top users | synonyms (1)

73
votes
8answers
42k views

Calculate text width with Javascript

I'd like to use Javascript to calculate the width of a string, is this possibly without having to use a monospace typeface? If it's not built in my only idea is to create a table of widths for each ...
47
votes
8answers
5k views

TextBox.TextChanged event firing twice on Windows Phone 7 emulator

I have a very simple test app just to play around with Windows Phone 7. I've just added a TextBox and a TextBlock to the standard UI template. The only custom code is the following: public partial ...
37
votes
7answers
11k views

Any way to make a WPF textblock selectable?

I want to make the text displayed in the Witty, an open source Twitter client, selectable. It is currently displayed using a custom textblock. I need to use a TextBlock because I'm working with the ...
37
votes
19answers
30k views

Automatically select all text on focus in WinForms TextBox

When a C# WinForms text box receives focus, I want to select all the text in the textbox. To see what I mean, click in your web browser's address bar. See how all text was selected? I want to do ...
35
votes
5answers
30k views

Jquery: how to detect a textbox's content has changed

I want to detect whenever a textbox's content has changed. I can use the keyup method, but that will also detect keystrokes which do not generate letters, like the arrow keys. I thought of two methods ...
35
votes
11answers
20k views

How to automatically select all text on focus in WPF TextBox?

If I call SelectAll from a GotFocus event handler, it doesn't work with the mouse - the selection disappears as soon as mouse is released. EDIT: People are liking Donnelle's answer, I'll try to ...
34
votes
9answers
50k views

How do I make a textbox that only accepts numbers?

I have a windows forms app with a textbox control that I want to only accept integer values. In the past I've done this kind of validation by overloading the KeyPress event and just removing ...
21
votes
4answers
15k views

Redirect console output to textbox in separate program C#

I'm developing an Windows Forms application that requires me to call a separate program to perform a task. The program is a console application and I need to redirect standard output from the console ...
20
votes
9answers
16k views

How can I dynamically change auto complete entries in a C# combobox or textbox?

I have a combobox in C# and I want to use auto complete suggestions with it, however I want to be able to change the auto complete entries as the user types, because the possible valid entries are far ...
19
votes
4answers
7k views

Scroll to bottom of C# TextBox

I have a TextBox on a C# Forms Application. I populate the TextBox with information on the Load event of the form. I then call the following: this.txtLogEntries.SelectionStart = ...
19
votes
6answers
7k views

WPF MVVM Focus Field on Load

I have a View that has a single TextBox and a couple Buttons below it. When the window loads I want that TextBox to have focus. If I was not using MVVM I would just call TextBox.Focus() in the ...
17
votes
12answers
15k views

Watermark TextBox in WPF

How can I put some text into a textbox which is removed automatically when user types something in it? (In WPF)
17
votes
10answers
8k views

What is a reasonable length limit on person “Name” fields?

I have a simple webform that will allow unauthenticated users to input their information, including name. I gave the name field a limit of 50 characters to coincide with my database table where the ...
16
votes
12answers
26k views

How Do I Give a Textbox Focus in Silverlight?

In my Silverlight application, I can't seem to bring focus to a TextBox control. On the recommendation of various posts, I've set the IsTabStop property to True and I'm using TextBox.Focus(). Though ...
15
votes
3answers
6k views

WPF: AutoComplete TextBox, …again!

This other SO question asks about an autocomplete textbox in WPF. Several people have built these, and one of the answers given there suggests this codeproject article. But I've not found any WPF ...
15
votes
7answers
23k views

How do I get a TextBox to only accept numeric input in WPF?

I'm looking to accept digits and the decimal point, but no sign. I've looked at samples using the NumericUpDown control for WinForms, and this sample of a NumericUpDown custom control from ...
14
votes
1answer
3k views

Text box in matplotlib?

Is it possible to display text in a box through Matplotlib, with automatic line breaks? By using pyplot.text(), I was only able to print multi-line text that flows beyond the boundaries of the ...
14
votes
2answers
2k views

How does StackOverflow's 'tags' textbox autocomplete work?

I know they're using a jQuery plugin, but I can't seem to find which one they used. In particular, what I'm looking for is autocomplete with exactly the same functionality as SO's autocomplete, where ...
14
votes
16answers
27k views

How can I force input to uppercase in an ASP.NET textbox?

I'm writing an ASP.NET application. I have a textbox on a webform, and I want to force whatever the user types to upper case. I'd like to do this on the front end. You should also note that there is a ...
13
votes
8answers
10k views

A textbox/richtextbox that has syntax highlighting? [C#]

Where can I find a control for WinForms that will highlight source code pasted into it? I would like one that has syntax highlighting support for many different languages but if it only works with C# ...
13
votes
2answers
13k views

AutoComplete TextBox in WPF

Can we make textbox to autocomplete in WPF? I found a sample where a combox box is used and the traingle is removed by editing style template. Do we better solution for autocomplete textbox? ...
12
votes
2answers
367 views

how to insert image in a textbox

Is there a way to insert an image in a textbox? I'm working on a chat application. And I want to change the values ":)", ":(" etc. with icon images. But I couldn't find that how can I insert image in ...
12
votes
5answers
17k views

How to remove focus from a textbox in C#/WinForms

I need to remove the focus from several textboxes; I tried using: textBox.Focused = false; but the property is read only. I then tried setting the focus on the form, so as to remove it from all the ...
10
votes
4answers
107 views

Possible to scroll caret into view inside a single HTML text field with JavaScript?

Knowing the jQuery Caret plugin, I'm still seeing no way to do the following on a single line text box in HTML (i.e. the input:type=text control) with JavaScript: Programmatically inserting text ...
10
votes
4answers
1k views

Executing viewmodels command on enter in TextBox

I want to execute a command in my viewmodel when the user presses enter in a TextBox. The command works when bound to a button. <Button Content="Add" Command="{Binding Path=AddCommand}" /> ...
10
votes
2answers
2k views

jQuery textbox.val('xxxx') not causing change to fire?

I have the following jQuery code in place on my page: var isChanged = false; $(document).ready(function() { $('.change').change(function() { isChanged = true; }); }); I am using a ...
10
votes
3answers
5k views

How to define TextBox input restrictions?

How can I restrict TextBox to accept only capital letters, or for example digits, or forbid to put any special character? Sure it's a piece of cake to catch TextInput event and handle the text here, ...
10
votes
3answers
6k views

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 text to it. I would like the textbox to automatically scroll to the bottom-most entry (the ...
9
votes
1answer
628 views

TextBox doesn't honor System Decimal (Dot or Comma)

If I bind Text in a TextBox to a float Property then the displayed text doesn't honor the system decimal (dot or comma). Instead it always displays a dot ('.'). But if I display the value in a ...
9
votes
8answers
9k views

Set focus on textbox in WPF from view model (C#) & wPF

I have a TextBox and a Button in my view. Now I am checking a condition upon button click and if the condition turns out to be false, displaying the message to the user, and then I have to set the ...
9
votes
4answers
2k views

Winforms Textbox - Using Ctrl-Backspace to Delete Whole Word

I have a Winforms dialog that contains among other controls a TextBox that allows a single line of input. I would like to allow the user to be able to press Ctrl-Backspace to delete an entire word. ...
9
votes
3answers
2k views

How to keep WPF TextBox selection when not focused?

I want to show a selection in a WPF TextBox even when it's not in focus. How can I do this?
9
votes
4answers
18k views

Set cursor position in html textbox

Does anybody know how to move the cursor in a textbox to a particular position? For example if a textbox (e.g. input element, not textarea) has 50 characters in it and I want to position the cursor ...
9
votes
2answers
5k views

How can you change the highlighted text color for a WPF TextBox?

The WPF TextBox natively makes use of the System Highlight color for painting the background of selected text. I would like to override this and make it consistent since it varies by OS/user theme. ...
8
votes
7answers
4k views

Best way to restrict a text field to numbers only?

I'm using the following Javascript to restrict a text field on my website to only accept numerical input, and no other letters or characters. The problem is, it REALLY rejects all other key inputs, ...
8
votes
2answers
638 views

How can I select multiple text segments in a WPF textbox?

Is it possible to select multiple parts of text within a WPF textbox? For instance, for a textbox that contains the string THIS IS A TEST, I want to be able to highlight THIS, then hold Ctrl and ...
8
votes
3answers
486 views

How can I define how many spaces a TAB jumps in a XAML TextBox?

When the user presses a tab in this textbox, the cursor jumps an equivalent of 8 spaces. How can I change it so it jumps only 4 or 2? <TextBox Width="200" Height="200" Margin="0 0 10 ...
8
votes
3answers
2k views

How to achieve focus-reset to update BindingSource of TextBox before any action

I have observed some unexpected or at least not-perfectly-matching-my-needs behaviour of textboxes bound to textproperties when I can't use using UpdateTrigger=PropertyChanged for my binding. Probably ...
8
votes
5answers
8k views

How to scroll down in a textbox by code in C#

I am using winforms, and I update a text box once in a while (showing messages). however, when the text reaches the end of the box it produces scrollbars and I don't know how to scroll down to the ...
8
votes
4answers
15k views

Cursor Focus on Textbox in WPF/C#

I am currently in the process of creating a Onscreen keyboard. I am handling the button click using routedcommands. The issue is that when i click on the button in keyboard panel the focus shifts to ...
8
votes
7answers
6k views

Best approach to Windows Forms rolling log output in TextBox

In a Forms application I'm displaying log output from a long running command-line application that generated a lot of output. I start the program in the background, and capture its output and ...
8
votes
5answers
5k views

XAML : Binding textbox maxlength to Class constant

I am attempting to bind a WPF textbox's Maxlength property to a known constant deep within a class. I am using c#. The class has a structure not too dissimilar to the following: namespace Blah { ...
7
votes
5answers
244 views

Override or overload AutoComplete Append rule

I have a textbox which sends some commands to an instrument. I added the AutoComplete feature to this textbox and things are going easier now. What I am thinking to improve this, is to add a ...
7
votes
1answer
984 views

How to show in wpf password box characters for few second?

If the user enter 1985 in the password box,it will be shown .... . How to show letter or number for few seconds and after that change it to bullet? I suppose that this cant be done in the passsword ...
7
votes
4answers
1k views

how to disable copy, Paste and delete features on a textbox using C#

Can anybody please suggest me how to handle Cut,Copy and Paste event on a Text Box in Win form using C#.
7
votes
3answers
2k views

Can a background image be set on a Winforms TextBox?

Is it possible to change the background image of a Windows Forms TextBox in C#? There is no BackgroundImage property. Should I override the Paint method somehow?
7
votes
3answers
1k views

Python/Tkinter: Interactively validating Entry widget content

What is the recommended technique for interactively validating content in a Tkinter Entry widget? I've read the posts about using validate=True and validatecommand=command and it appears that these ...
7
votes
4answers
3k views

Paste Event in a WPF TextBox

I have created a custom control inheriting TextBox. This custom control is a numeric TextBox, only supporting numbers. I am using OnPreviewTextInput to check each new character being typed to see if ...
7
votes
4answers
2k views

WPF: How to programmatically remove focus from a TextBox

I want to add a simple (at least I thought it was) behaviour to my WPF TextBox. When the user presses Escape I want the TextBox he is editing to have the text it had when the user started editing, ...
7
votes
4answers
2k views

Disable button in WPF?

I have a button and textbox in my wpf app. How can i make button not enable until user enters some text in textbox?

1 2 3 4 5 53