Monday, June 10, 2013

Visual Basic Reverse Text String Tutorial



    
 This Tutorial is pretty Easier And these are most important Statements when You are making tool from scratch this might help
What You will need?

  1.  A brain
  2.  Visual Studio
  3.  Windows XP , Vista , 7 , 8 
  4.  Add textbox and A button and A label


         Dim texttorreverse As String
        Dim strreversetext As [Char]()
        Dim array As Array
        texttorreverse = Me.TextBox1.Text
        strreversetext = texttorreverse.ToCharArray
        array.Reverse(strreversetext)
        Me.lblResult.Text = strreversetext


No comments:

Post a Comment