private void btnContract_Click(object sender, EventArgs e) { FormContract C = new FormContract(lblUser.Text.Trim()); this.Hide(); this.Close(); C.Show(); }
private void notifyContract_MouseDoubleClick(object sender, MouseEventArgs e) { FormContract C = new FormContract(lblUser.Text.Trim()); this.Hide(); this.Close(); C.Show(); }
private void notifyContract_BalloonTipClosed(object sender, EventArgs e) { FormContract C = new FormContract(lblUser.Text.Trim()); this.Hide(); this.Close(); C.Show(); }