VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Reverses a string. eg abc will be cba.

by Varun Godbole (15 Submissions)
Category: Math/Dates
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Sat 11th November 2006
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Reverses a string. eg abc will be cba.

API Declarations


2 command boxes
2 txt boxes(fromreverse, toreverse)

Rate Reverses a string. eg abc will be cba.



a = fromreverse.Text
toreverse.Text = StrReverse(a)
End Sub

Private Sub Command2_Click()
a = toreverse.Text
fromreverse.Text = StrReverse(a)
End Sub

Download this snippet    Add to My Saved Code

Reverses a string. eg abc will be cba. Comments

No comments have been posted about Reverses a string. eg abc will be cba.. Why not be the first to post a comment about Reverses a string. eg abc will be cba..

Post your comment

Subject:
Message:
0/1000 characters