I want to pass values between two Forms (c#). How can I do it?
I have two forms: Form1 and Form2.
Form1 contains one button. When I click on that button, Fo
// In form 1 public static string Username = Me; // In form 2's load block string _UserName = Form1.Username;