Question How to change te text of an label from form1 to form2 ,,and save to my settings ?

edinet

Member
Joined
May 8, 2013
Messages
22
Programming Experience
Beginner
How to change the text of label1 on form2,,,from textbox1 that is on form 1,,and save it to my settings
textlbl.png
 
Bind the label Text property to the setting: select the label and go to Properties window, at top expand (ApplicationSettings), in Text property select the application setting to bind to.

In form code just set the setting:
My.Settings.text = InputTextBox.Text
 
Back
Top