13
votes
5answers
4k 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 …
10
votes
7answers
3k 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 …
9
votes
12answers
5k 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 …
6
votes
8answers
4k 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 …
6
votes
3answers
3k 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 …
5
votes
5answers
451 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. …
5
votes
2answers
2k 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.
…
5
votes
4answers
477 views
Looking for a .NET “text” editor control.
My boss is looking for a .NET text control to build a custom editor on. Here’s what we need it to do:
Supports embedded tables, with easily editing (like Word tables).
Supports different text styles …
5
votes
2answers
2k 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 …
4
votes
4answers
524 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 = …
4
votes
3answers
639 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 …
4
votes
11answers
5k 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 …
4
votes
3answers
964 views
Position the caret in a MaskedTextbox
I would like to be able to override the default behaviour for positioning the caret in a masked textbox.
The default is to place the caret where the mouse was clicked, the masked textbox already …
3
votes
4answers
101 views
VB: Allowing Only Numbers (not Letters) To Be Entered Into Textbox
I have a textbox which controls the interval of a Timer control. How do I filter out letters? Is it possible to restrict entry to numbers only (like if you enter a letter or a space, nothing happens)? …
3
votes
4answers
90 views
Catching control-c in a textbox
Despite me working with C# (Forms) for years, I'm having a brain fail moment, and can't for the life of me figure out how to catch a user typing CTRL-C into a textbox.
My application is basically a …
