There's a number of ways you could do it:
- Share a model object between form1 and form2.
- Have form2 expose an event that form1 subscribes to. Pass the values in the event args.
- Have form2 expose the value as a public property that form1 reads after form2 closes.