[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
Re: Turn txt to CAPITAL letters
In say a CommandButton Click():
vb Code:
Text1.Text = UCase(Text1.Text)
Re: Turn txt to CAPITAL letters
Command1_Click() Code:
Text1.Text = UCase(Text1.Text)
Re: Turn txt to CAPITAL letters
Re: Turn txt to CAPITAL letters
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
Re: [RESOLVED] Turn txt to CAPITAL letters
With time you will :) We are all still learning :D Well atleast i know i am ;)
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)! ;)