Alex Gordon
Alex Gordon

Reputation: 60691

setting textbox text equal to textbox text on a different form?

is it possible in design mode to set the textbox text property to the text property of a textbox in a different form in vb.net?

Upvotes: 0

Views: 1003

Answers (1)

Jason Z
Jason Z

Reputation: 13422

You could use the ApplicationSettings.PropertyBinding property of the text box to accomplish what you want. If you sort the text box properties A-Z, it should be the first one in the list in parenthesis. Just create a shared application value and it will apply to each control that binds to the value.

Upvotes: 2

Related Questions