esreveRgnirtS

Status
Not open for further replies.

RCuber

The Mighty Unkel!!!
Staff member
.sdneirf ruoy fo emos loof ot ti esu nac uoy epoh I
.elbatucexe eht rof elif eht gnihcatta ma I
.siht dnatsrednu nac uoy epoh I
.ti tnsi looc yrev .ti epyt uoy nehw dna sa gnirts desrever eht uoy evig ylkciuq nac tI .siht gnirahs fo thguoht I .txet a esrever dluow taht noitacilppa a gnitirw fo thguoht I os od ot gnihton dah I . :) derob yllaiciffo ma I taht yas ot das yrev ma I ,snaitigid wollef sgniteerG

.eno siht nur ot 1.1 krowemarf TEN. eriuqer uoy WTB
 
Last edited:

AshishSharma

Livin' in the ghetto
Needs .NET Framework haan .. So do we type in the text on the application or you feed in the file like say Notepad and it turns things around for you ?

Sorry can't test myself right now .... (.NET Framework not installed)
 
OP
RCuber

RCuber

The Mighty Unkel!!!
Staff member
Let me wait for some more replies :D . I hope someone will give the answer :p
 

dd_wingrider

In the zone
two frames, as u write in one frame , in other frame it automatically get typed backwards, nice one

here is the backward version(eno ecin ,sdrawkcab depyt teg ti emarf rehto ni , emarf eno ni etirw u sa ,semarf owt)


and here is what charangk wrote in 1st post
BTW you require .NET framework 1.1 to run this one.
Greetings fellow digitians, I am very sad to say that I am officially bored :( . I had nothing to do so I thought of writing a application that would reverse a text. I thought of sharing this. It can quicklt give you the reversed string as and when you type it. very cool isnt it.
I hope you can understand this.
I am attaching the file for the executable.
I hope you can use it to fool some of your friends.
 

mehulved

18 Till I Die............
charangk said:
tlkciuq nac tI .siht gnirahs fo thguoht I .txet a esrever dluow taht noitacilppa a gnitirw fo thguoht I os od ot gnihton dah I .
?ytrewq si erehw .opyt
 
OP
RCuber

RCuber

The Mighty Unkel!!!
Staff member
^^ :grin:

Its just a few line of code.. I didnt even bother to change the default names except the form title.

Code:
 Private Function RevStr(ByVal val As String) As String
        If val.Length > 1 Then
            Dim tempstr As New StringBuilder
            For position As Int32 = val.Length - 1 To 0 Step -1
                tempstr.Append(val.Chars(position))
            Next
            Return tempstr.ToString
        Else
            Return val
        End If
    End Function

    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
        TextBox2.Text = RevStr(TextBox1.Text)
    End Sub
End Class
 
Status
Not open for further replies.
Top Bottom