hi There please help me in these program because the character only moves 1 time but it must be like this
input: abcd
output: dabc
then when i click forward again
output cdab
output: bcda
output: abcd
like this and also it must be in backward to when i click the backward button.
Private Sub btnForward_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnForward.Click
Dim str As String = txtInput.Text
Dim x As Integer
Dim str2 As String
For x = 0 To str.Length - 1
lblOutput.Text = str.Substring(x, 1) & str.Substring(0, 3)
Next
End Sub