Hello...
I want to ask how to change text from richtextbox/textbox ?
For example
I have the sentences "The bird fly away"
I want to change it into
Fly bird the away
I tried some code like this
TextBox2.Text = TextBox2.Text.Replace(Fly, The)
TextBox2.Text = TextBox2.Text.Replace(The, Fly)
it become The bird the away
>_<
I also tried to use array but no luck :(
i set the array(0) = T , array(1) = h, array(2) = e
then I set the textbox2.text(0) = array(0) , textbox2.text(1) = array(1) and so on... but cannot.. the syntax got 'blue curly underline'
i hope you understand...
thanks