Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Text Flip [TuT]
#1
Ok Many people has been asking for this source so i decided to share.

Ok so Lets Begin.

1.First of you Will Need Two Text Boxes.


2. Under Public Class Form1 paste this code

Code:
Dim X As String = "¿/˙'\‾¡zʎxʍʌnʇsɹbdouɯlʞɾıɥƃɟǝpɔqɐ", _
    V As String = "?\.,/_!zyxwvutsrqponmlkjihgfedcba"

3. Now Double Click On Textbox1 and enter this code

Code:
Dim str As String, Newstr As String = Nothing
        str = TextBox1.Text
        For Each StrText As String In str
            Select Case True
                Case StrText = "b"
                    StrText = "p"
                Case StrText = "p"
                    StrText = "b"
                Case StrText = "q"
                    StrText = "d"
                Case StrText = "d"
                    StrText = "q"
                Case StrText = "u"
                    StrText = "n"
                Case True
                    For I = 0 To X.Length - 1
                        StrText = StrText.Replace(V.ElementAt(I), _
                        X.ElementAt(I))
                    Next
            End Select
            Newstr &= StrText
        Next
        TextBox2.Text = Newstr
        TextBox2.Text = StrReverse(TextBox2.Text)

* Note: YOu do not Need any buttons for this Only Textboxes (Unless you would like to Put this In your Project you can do anything You want with the Source)
* Make Sure You give Credits To me If you do use this.
* If you so happen Not to Get The source I posted Above you can just copy and paste this Into or as I should say Onto your Project.

Quote: 'Give Credits To Optiikzz If you use this'
'TechnicForums.com use Optiikzz As Referrer


Public Class Form1
Dim X As String = "¿/˙'\‾¡zʎxʍʌnʇsɹbdouɯlʞɾıɥƃɟǝpɔqɐ", _
V As String = "?\.,/_!zyxwvutsrqponmlkjihgfedcba"

Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
Dim str As String, Newstr As String = Nothing
str = TextBox1.Text
For Each StrText As String In str
Select Case True
Case StrText = "b"
StrText = "p"
Case StrText = "p"
StrText = "b"
Case StrText = "q"
StrText = "d"
Case StrText = "d"
StrText = "q"
Case StrText = "u"
StrText = "n"
Case True
For I = 0 To X.Length - 1
StrText = StrText.Replace(V.ElementAt(I), _
X.ElementAt(I))
Next
End Select
Newstr &= StrText
Next
TextBox2.Text = Newstr
TextBox2.Text = StrReverse(TextBox2.Text)
End Sub

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

End Sub
End Class
[Image: OGForumsbanner.png]
Reply


Messages In This Thread
Text Flip [TuT] - by SouR'D - 03-04-2010, 04:29 PM
RE: Text Flip [TuT] - by flAmingw0rm - 03-06-2010, 03:35 AM
RE: Text Flip [TuT] - by Drake™ - 04-05-2010, 12:49 PM
RE: Text Flip [TuT] - by Gos - 04-05-2010, 12:50 PM
RE: Text Flip [TuT] - by Support - 04-05-2010, 12:51 PM
RE: Text Flip [TuT] - by Drake™ - 04-05-2010, 01:29 PM
RE: Text Flip [TuT] - by Support - 04-05-2010, 01:31 PM
RE: Text Flip [TuT] - by Drake™ - 04-05-2010, 01:32 PM
RE: Text Flip [TuT] - by burnt - 04-05-2010, 01:32 PM
RE: Text Flip [TuT] - by Support - 04-05-2010, 01:35 PM
RE: Text Flip [TuT] - by Drake™ - 04-05-2010, 01:36 PM
RE: Text Flip [TuT] - by Prettykitty - 04-05-2010, 01:46 PM
RE: Text Flip [TuT] - by Deities - 04-05-2010, 06:29 PM
RE: Text Flip [TuT] - by Awesome - 04-06-2010, 04:33 PM
RE: Text Flip [TuT] - by Navineous - 04-06-2010, 05:32 PM
RE: Text Flip [TuT] - by Kewlz - 04-07-2010, 02:48 AM
RE: Text Flip [TuT] - by GameOver* - 04-07-2010, 03:30 AM
RE: Text Flip [TuT] - by Uchiha Scottyy.Fx™ - 04-09-2010, 07:15 PM
RE: Text Flip [TuT] - by rens23 - 04-13-2010, 10:32 PM
RE: Text Flip [TuT] - by RaZoR03 - 04-15-2010, 05:40 AM
RE: Text Flip [TuT] - by Anubis™ - 04-15-2010, 06:07 AM
RE: Text Flip [TuT] - by RaZoR03 - 04-18-2010, 12:26 AM
RE: Text Flip [TuT] - by lorens13 - 04-09-2012, 06:03 AM
RE: Text Flip [TuT] - by ven0m - 04-09-2012, 01:55 PM
RE: Text Flip [TuT] - by AceInfinity - 04-09-2012, 08:08 PM
RE: Text Flip [TuT] - by killermanjaro65 - 04-20-2012, 01:06 AM
RE: Text Flip [TuT] - by AceInfinity - 04-20-2012, 02:42 PM
RE: Text Flip [TuT] - by killermanjaro65 - 04-22-2012, 09:21 PM
RE: Text Flip [TuT] - by AceInfinity - 04-23-2012, 06:15 AM
RE: Text Flip [TuT] - by Zurg - 05-01-2012, 10:30 PM
RE: Text Flip [TuT] - by Snow. - 05-02-2012, 02:11 AM
RE: Text Flip [TuT] - by OnyxDev - 05-15-2012, 06:11 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] Statics 95 61,892 10-07-2012, 06:56 AM
Last Post: a99
  [TUT]Auto-Update System[TUT] HB Virus 3 2,428 01-07-2012, 02:21 PM
Last Post: Mastermrz
  TextBox2.Text | Transfer Text to ListBox Die 3 2,673 01-02-2012, 06:09 PM
Last Post: AceInfinity
  [TUT]Enable and Disable TaskManger in vb.net [TUT] HB Virus 4 3,174 12-19-2011, 10:10 AM
Last Post: euverve
  Text Converter. Turn your text upside down! Red X 29 8,700 08-01-2011, 07:46 AM
Last Post: Red X

Forum Jump:


Users browsing this thread: 10 Guest(s)