Total Pageviews

Friday, December 2, 2016

Reverse Word or Words in Visual Basic 2015

Here is the code how to revers word or words in Visual Basic 2015 (all versions) and return the result in TextBox.

Dim yourword As String = "test word"

Dim revyourword As String = StrReverse(yourword)

TextBox1.Text = revyourword


Get more tutorials about TextBox control in Visual Basic 2015.