VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



You Know, There are Two Way for Reverse String and that are

by Hiten Patel (3 Submissions)
Category: Math/Dates
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Tue 3rd July 2001
Date Added: Mon 8th February 2021
Rating: (1 Votes)

You Know, There are Two Way for Reverse String and that are

Rate You Know, There are Two Way for Reverse String and that are



'In this code you must have entired to Textbox Control and one Command Button
'This is so eisy way to Reverse String 

Private Sub Command1_Click()
     For i = Len(Text1) to 1 Step -1
         Text2.Text = Text2.Text + Mid(Text1.Text,I,1)
     Next i

'               OR another is

     Text2.Text = StrReverse(Text1.Text)
End Sub

'Send me reply how u like this code @ [email protected]


Download this snippet    Add to My Saved Code

You Know, There are Two Way for Reverse String and that are Comments

No comments have been posted about You Know, There are Two Way for Reverse String and that are. Why not be the first to post a comment about You Know, There are Two Way for Reverse String and that are.

Post your comment

Subject:
Message:
0/1000 characters