Code Snippet
public partial class Form2 : Form
{
private string form1String;
public Form2(string stringFromForm1)
{
form1String = stringFromForm1;
}
In Form2, you will recive a string from Form1.
Then in form1, you can create form2 as below to transmit a string to it.
Code Snippet