|
-
May 11th, 2007, 04:27 AM
#1
Thread Starter
Junior Member
[RESOLVED] Turn txt to CAPITAL letters
Hello every1, i am having a small problem. I want to turn a piece of text thatthe user types in a textbox into capital letters. It does not have to be in real-time, i jus want it to be converted into all capitals once the user hits the submit key. Or if tats not possible, i don mind having a variable in my program tat takes the text and converts into capital. Plz advice wat wud b the easiest way and how. Thanks
-
May 11th, 2007, 04:28 AM
#2
Re: Turn txt to CAPITAL letters
In say a CommandButton Click():
vb Code:
Text1.Text = UCase(Text1.Text)
-
May 11th, 2007, 04:30 AM
#3
Re: Turn txt to CAPITAL letters
Command1_Click() Code:
Text1.Text = UCase(Text1.Text)
Last edited by Paul M; May 11th, 2007 at 04:31 AM.
Reason: code tags ;)
-
May 11th, 2007, 04:35 AM
#4
Re: Turn txt to CAPITAL letters
Too slow
-
May 11th, 2007, 04:41 AM
#5
Re: Turn txt to CAPITAL letters
Yea, i have Dial-Up
-
May 11th, 2007, 05:41 AM
#6
Thread Starter
Junior Member
Re: [RESOLVED] Turn txt to CAPITAL letters
thanks for the quick reply.. was a pretty simple solution.. its all bout knowing VB functions.. wonder when i'll b able to memorize all that i need to!!!.. thanks a lot
-
May 11th, 2007, 05:45 AM
#7
-
May 11th, 2007, 05:51 AM
#8
Re: [RESOLVED] Turn txt to CAPITAL letters
And.... when you have learned VB6, then it will be time to learn VB.Net((2005) -if not Orca)!
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
|