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.
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
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
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 

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
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.
thanks
and thanked
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
Copyright Information
Copyright © Codenstuff.com 2020 - 2023