Possible Duplicate:
Passing variable between winforms
I have two forms one called Form1 the other called TicTacToeMainMenu.
In TicTacToeMainMenu I have created two variables
string Player1;
string Player2;
I have assigned two text fields to both variables.
pvpPl1.Text = Player1;
pvpPl2.Text = Player2;
I would like to grab the string values from TicTacToeMainMenu and use them in another form, Form1 how would I do this?