Question 1 ---
I am trying to make it so that when a user inputs there name, it will open a new form and display there name on that form. I Guess All I Need Is A Variable...
Code For Users Input:
//This Button Will Do ALL The Logging In Info
string name = textBox2.Text;
if (textBox2.Text == ("test,test")) //Login #1 = Developers Login
{
textBox4.Text = ("Hello " +name); // This Part Displays There Username On Form1
textBox1.ReadOnly = false;
Form2 menu = new Form2();
menu.Show(); // Then Form 2 Opens
}
All I Need Is A Way To Send The Variable String 'name' onto the other form