strRevText = array.Reverse 'Here is my problem
thats becouse array.Reverse needs an argument and the other thing it does not produce value so you can't assign it to strRevText
strRevText = Me.lblResult.Text
here is problem too , here u do not show the result !
after the correction this is ur code
Dim strOrgText As String
Dim strRevText As [Char]()
Dim array As Array
strOrgText = Me.txtTheString.Text
strRevText = strOrgText.ToCharArray
array.Reverse(strRevText)
Me.lblResult.Text = strRevText
or u can use
StrReverse function like this
Me.lblResult.Text = StrReverse(Me.txtTheString.Text)