Reverse text?

Do you need something made? then ask in here.
Forum rules
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
3 posts Page 1 of 1
Contributors
User avatar
zachman61
VIP - Donator
VIP - Donator
Posts: 1892
Joined: Wed Dec 16, 2009 9:56 pm

Reverse text?
zachman61
in textbox1 say the text is codenstuff.com i want it to convert in textbox2 to com.ffutsnedoc?
i think this part would be easy but also i want to have it so it will litterally flip the text
Nailing my feet to the floor is easier than using my own muscles to balance, but you don't see me doing that :)
User avatar
Agust1337
Coding God
Coding God
Posts: 2456
Joined: Fri Feb 19, 2010 8:18 pm

Re: Reverse text?
Agust1337
Hello Zach here's what you'll need to do is to
create a button called bntflip and double click it and put this code:
textbox2 can be label or anything
Code: Select all
  Dim strOrgText As String
        Dim strRevText As [Char]()
        Dim array As Array
        strOrgText = Me.TextBox1.Text
        strRevText = strOrgText.ToCharArray
        array.Reverse(strRevText)
        Me.TextBox2.Text = strRevText
Last edited by Agust1337 on Mon Aug 30, 2010 10:03 pm, edited 1 time in total.
Top-notch casual Dating
User avatar
zachman61
VIP - Donator
VIP - Donator
Posts: 1892
Joined: Wed Dec 16, 2009 9:56 pm

Re: Reverse text?
zachman61
thanks
and thanked
Nailing my feet to the floor is easier than using my own muscles to balance, but you don't see me doing that :)
3 posts Page 1 of 1
Return to “Tutorial Requests”