hello please help me on this how to make the first letter of each word in uppercase.hoping for your positive responds...thanks in advance

Recommended Answers

All 2 Replies

Use the StrConv function:

Text1.Text = StrConv(Text1.Text, vbProperCase)

vbProperCase converts the first letter of every word in string to uppercase.

Other constants are vbUpperCase, vbLowerCase, vbUnicode, and vbFromUnicode.

hello thanks for helping me more power to you..

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.