Click here to Skip to main content
Click here to Skip to main content

Show All TextBox Text After Resize

By , 16 Sep 2008
 

Introduction

If you have a TextBox that is too narrow to display all its text, it will show the end of the text on startup:

BeforeResize.jpg

If you resize it to a width that could display the whole string, the TextBox will not reposition the text to show all text:

UnmodifiedResize.JPG

This code will reset the text position to show all text, while maintaining any text selection and carat position.

ModifiedResize.JPG

Background

The .NET TextBox control is merely a wrapper for the old Win32 edit box control. This limits its functionality, and makes it difficult to customize. Even simple tasks like resizing the height of the TextBox require you to use complex workarounds to accomplish.

When you resize a TextBox where some of the text is off the left edge of the control, it never repositions the text to show as much as the control will handle. To overcome this limitation, we need to modify the TextBox text selection.

Using the code

To reset the visible text in the TextBox, we need to change the carat (cursor) position to the beginning of the string, then back to the end. However, doing this will lose any selection that the user might have made prior to the resize. This routine will determine what is selected in the control, reset the carat location, then restore the user's selection.

Visual Basic:

Private Sub SetAllTextVisible(ByRef tbTextBox As TextBox)
    Dim iSelectStart As Integer
    Dim iSelectLength As Integer

    ' Get the current selection so we can re-select it.
    iSelectStart = tbTextBox.SelectionStart
    iSelectLength = tbTextBox.SelectionLength

    ' De-select everything and set the cursor to
    ' the start of the line
    tbTextBox.Select(0, 0)
    tbTextBox.SelectionStart = 0

    ' Restore the user's original selection
    tbTextBox.Select(iSelectStart, iSelectLength)
End Sub

C#:

public void SetAllTextVisible(TextBox tbTextBox)
{
    int startselect;
    int selectlength;

    // Get the current selection so we can re-select it
    startselect = tbTextBox.SelectionStart;
    selectlength = tbTextBox.SelectionLength;
    // De-select everything and set the cursor to the
    // start of the line.
    tbTextBox.Select(0, 0);
    tbTextBox.SelectionStart = 0;

    // Restore the user's original selection
    tbTextBox.Select(startselect, selectlength);
}

User Control

Alternatively, you could create a new UserControl class and change the inheritance on the class declaration from UserControl to TextBox. Override the OnSizeChanged event to call the SetAllTextVisible routine.

Important: If you change a class inheritence from UserControl to TextBox, you will need to open the UserControll.Designer code and remove the Autoscale property:

private void InitializeComponent()
{
    components = new System.ComponentModel.Container();
    //Comment the line below when changing inheritence from UserControl
    //to Textbox.
    //this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
}

public partial class ShowAllTextBox : TextBox
{
    public ShowAllTextBox()
    {
        InitializeComponent();
    }

    protected override void OnSizeChanged(EventArgs e)
    {
        SetAllTextVisible();
        base.OnSizeChanged(e);
    }

    public void SetAllTextVisible()
    {
        int startselect;
        int selectlength;

        // Get the current selection so we can re-select it
        startselect = this.SelectionStart;
        selectlength = this.SelectionLength;
        // De-select everything and set the cursor to the
        // start of the line.
        this.Select(0, 0);
        this.SelectionStart = 0;

        // Restore the user's original selection
        this.Select(startselect, selectlength);
    }
}

Enjoy!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

hayes.adrian
Systems Engineer ThomsonReuters Tax & Accounting
United States United States
Member
I am a Senior System Administrator for a 400+ server ASP farm. With such a large farm and limited staff, our goal is to add as much automation as possible to the system. Most of my programming consists of intelligent slack: spending 2 hours to write a program that handles a reoccurring 10 minute manual job.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberEswa8 Nov '10 - 0:33 
GeneralPerfect. Thanks.membermldisibio30 Sep '08 - 8:54 
GeneralExcellent and elegantly simple solutionmemberdgroves22 Sep '08 - 13:02 
GeneralYour Profile is interestingmemberDileep.M16 Sep '08 - 21:21 
RantRe: Your Profile is interestingmembersk8er_boy28717 Sep '08 - 21:42 
GeneralAnother way...membersk8er_boy28716 Sep '08 - 20:14 
GeneralRe: Another way...memberpsouza4micronet17 Sep '08 - 3:35 
RantRe: Another way... [modified]membersk8er_boy28717 Sep '08 - 21:38 
GeneralWhy I voted "5"memberHumble Programmer16 Sep '08 - 11:59 
GeneralRe: Why I voted "5"memberIlíon16 Sep '08 - 15:23 
Joke[Message Deleted]membersk8er_boy28716 Sep '08 - 20:09 
GeneralRe: Why I voted "5"memberJohnny J.16 Sep '08 - 22:12 
GeneralRe: Why I voted "5"memberIlíon17 Sep '08 - 5:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130513.1 | Last Updated 16 Sep 2008
Article Copyright 2008 by hayes.adrian
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid