How can I SWITCH the contents of 2 textboxes by clicking on a command button?
I tried to solve it this way :
Private Sub Command1_Click()
Text1.Text = Text2.Text
Text2.Text = Text1.Text
End Sub
But it didn't work out and it only changes the content of text1
Thanks in advance :)