Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7078465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:33:04+00:00 2026-05-28T06:33:04+00:00

I want my TextBox to make the text I enter as Sentence Case(ProperCase) ..

  • 0

I want my TextBox to make the text I enter as Sentence Case(ProperCase).. but I don’t want to write any code in an event like Lost Focus or KeyPress.

Just by default, whenever a user enters or types in a textbox the first letter of every word should automatically be converted into UpperCase.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:33:04+00:00Added an answer on May 28, 2026 at 6:33 am

    I don’t know of a way to do this in WinForms without putting some code in an event. The CharacterCasing property of a TextBox allows you to force all characters entered to upper or lower case, but not to do Proper Casing. Incidentally, it’s a single line of code to do it in an event:

    TextBox1.Text = StrConv(TextBox1.Text, VbStrConv.ProperCase)
    

    A more generic handler for doing this across multiple textboxes involves attaching a number of events to the same code:

    'Attach multiple events to this handler
    Private Sub MakeProperCase(sender As Object, e As EventArgs) Handles _
        TextBox1.LostFocus, TextBox2.LostFocus, TextBox3.LostFocus
    
        'Get the caller of the method and cast it to a generic textbox
        Dim currentTextBox As TextBox = DirectCast(sender, TextBox)
        'Set the text of the generic textbox to Proper Case
        currentTextBox.Text = StrConv(currentTextBox.Text, VbStrConv.ProperCase)
    
    End Sub
    

    In ASP.NET, you can do this without code; there’s a CSS property called text-transform, one of the values for this property is capitalize. When applied to a text input element, it makes the first letter of each word uppercase.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i want to make a text box like stackoverflow have for the tag at
i want to make empty textbox checking for android. i tried try catch but
I want to make my textbox height increases as the user inputs more text
I am trying to make some project in which i want a text box
I want to make the textbox allow only three digits and three decimals.For example
Hi I want to make my textbox's width longer. The view that is generated,
I want to let TextBox control TextChanged event fire only when there are more
I want to catch an exception when user enter no value in a Textbox
I want to make bubble of text appear when the mouse is over a
I want to make function work : int a = Convert.ToInt32(tb[0].Text); After i click

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.