Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

First letter in uppercase 2

Status
Not open for further replies.

DotNetNewbie

Programmer
Mar 3, 2004
344
GB
Hi,

I'm sure this is really simple, but for teh life of me I cannot figure it out. I have a form that is used for data entry and I need to make sure the first letter of each text field is converted to uppercase.

Is there a builtin function for this? or can someone suggest a solution.

Many thanks in advance

.netNewbie
 
Code:
TextBox1.Text = TextBox1.Text.Substring(0, 1).ToUpper & TextBox1.Text.Substring(1)

or this

Code:
TextBox1.Text = TextBox1.Text.Substring(0, 1).ToUpper & TextBox1.Text.Substring(1).tolower

Christiaan Baes
Belgium

If you want to get an answer read this FAQ faq796-2540
What a wonderfull world - Louis armstrong
 
I wrote a little function to do this:
Public Function ProperCase(ByVal strInfo As String) As String
'This function capitalizes the first letter of a name
Dim Letter As String
Dim Hi As String
Letter = Microsoft.VisualBasic.Left(strInfo, 1)
Letter = Letter.ToUpper
strInfo = Letter & Mid(strInfo, 2)
'MsgBox(strInfo)
Return strInfo
End Function
 
Fantastic,

Your solutions have worked a treat, I think a couple of stars are in order.

Thanks for your time and effort :)

.NetNewbie
 
Hi everyone,

I need some more help on this. The current solution works well, however I need to make a change:

At the moment the current solution will convert:

mark mark

to:

Mark mark

However I now need it to be a little bit more clever and do this:

Mark Mark
 
try using john's first solution

Christiaan Baes
Belgium

If you want to get an answer read this FAQ faq796-2540
There's no such thing as a winnable war - Sting
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top