Home General VB/VBA Turn Text Backwards
20 | 05 | 2012
This site has been updated and renewed. You have followed an old link.

Click here to go to the new site

http://www.visiblevisual.com/jupgrade

Turn Text Backwards PDF Print E-mail
User Rating: / 0
PoorBest 
Tutorials
Written by Administrator   

 Flip a string or text and make it backwards.

Show/Hidden vbnet code

View source
Function TurnTextBackwards(Text As String)
 
 
 
	'***************************************
 
	'**** Code from VisibleVisual.com ******
 
	'***************************************
 
	On Error GoTo errorhandler
 
 
 
	For i% = 1 To Len(Text$)
 
	stringy$ = Mid$(Text$, i%, 1)
 
	final$ = stringy$ + final$
 
	Next i%
 
	TurnTextBackwards = final$
 
	Exit Function
 
	errorhandler: MsgBox Err.Description, vbExclamation, "Error"
 
	End Function

 

Comments   

 
0 #1 Guest 2010-10-28 13:34
AS String
Quote
 

Add comment


Security code
Refresh

This site has been updated and renewed. You have followed an old link.

Click here to go to the new site

http://www.visiblevisual.com/jupgrade