- Home
·
- Math/Dates
·
- You Know, There are Two Way for Reverse String and that are
You Know, There are Two Way for Reverse String and that are
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
(2(2 Vote))
'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]
You Know, There are Two Way for Reverse String and that are Comments
No comments yet — be the first to post one!
Post a Comment