Hi
i need help in changing a character case for exaple i have a textbox i want that when i write a word it should change case by character to character like : if i write " case " then text box should display " cAsE "

Recommended Answers

All 3 Replies

Hi
i need help in changing a character case for exaple i have a textbox i want that when i write a word it should change case by character to character like : if i write " case " then text box should display " cAsE "

hi,
i hope
this may help you..

http://www.vb6.us/tutorials/vb6-string-functions

Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
        TextBox1.Text = TextBox1.Text.Replace("case", "cAsE")
    End Sub
Private Function AlternateCase(ByVal Input As String) As String
        Dim sResult As String = ""
        Dim sChar As String = ""
        Dim i As Integer
        Dim capital As Boolean = True
        For i = 0 To Input.Length - 1
            capital = Not capital
            sChar = Input.Substring(i, 1)
            If capital Then
                sResult &= sChar.ToUpper
            Else
                sResult &= sChar.ToLower
            End If
        Next
        Return sResult
    End Function
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.