
Making value in upper letter
Hi, it may be better to set the CharacterCasing property of the control to
Uppercase
--
Happy to help,
-- Tom Spink
Please respond to the newsgroup,
so all can benefit.
One Day,
Quote:
> Oh thank Buddy :)
> i was missing this line (.Select
> (.TextLength, .TextLength)):(
> so when i type characters ther start apearing in reverse
> order :)
> Thankx
> Smiles
> >-----Original Message-----
> >I hope this help.
> >Private Sub TextBox1_TextChanged(ByVal sender As Object,
> ByVal e As
> >System.EventArgs) _
> >Handles TextBox1.TextChanged
> > With TextBox1
> > .Text = .Text.ToUpper
> > .Select(.TextLength, .TextLength)
> > End With
> >End Sub
> >Cheers
> >> how can we make key punched value in upper case in any
> >> vb.Net control ?
> >> in VB6 we add certain value in assci code
> >> how we do that in vb.net ?
> >> Thank you
> >.