Reputation: 60691
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
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