Textbox app how i can join two textboxes

Hello everyone, I have a question: How can I link two textbox elements together? When I write something in the first element, the text appears in the second element.

Welcome to the community.

Please see the documentation for the TextBox component.


The code to accomplish your requirement will look like this: When TextBox1.LostFocus, do: Set TextBox2.Text to TextBox1.Text.
1 Like