Example #1
0
File: main.cs Project: TSP5/TSP5
 private void button3_Click_1(object sender, EventArgs e)
 {
     User tmp = getUser();
     if (user == null)
         user = tmp;
     this.panel_Login.SendToBack();
     Compare cp = new Compare(tmp, null, this);
     cp.MdiParent = this;
     cp.Show();
 }
Example #2
0
 public InputCompare(String cowName, Compare parent)
 {
     this.cowName = cowName;
     this.parent = parent;
     InitializeComponent();
 }