|
-
Feb 8th, 2008, 10:20 AM
#1
Thread Starter
Frenzied Member
[RESOLVED] Capital letter only first string
How to make Capital Letter only First String ?
let say I typing "sawah sempadan", I want it store in the database like this
"Sawah Sempadan"
Code:
.Fields("Kompartment").Value = Text1.Text
-
Feb 8th, 2008, 10:32 AM
#2
Re: Capital letter only first string
Code:
Text1.Text = StrConv(Text1.Text, vbProperCase)
-
Feb 8th, 2008, 10:36 AM
#3
Thread Starter
Frenzied Member
Re: Capital letter only first string
If I typing "SAWAH SEMPADAN" or "Sawah sempadan" or "sawah sempadan". How I can store it like this "Sawah Sempadan"
-
Feb 8th, 2008, 11:06 AM
#4
Re: Capital letter only first string
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|