private void btnShow_Click(object sender, EventArgs e) { ShowResume s = new ShowResume(this.Email, this); s.Show(); this.Hide(); }
private void clientDataGridSearch_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex != -1) { ShowResume sr = new ShowResume(clientDataGridSearch.Rows[e.RowIndex].Cells[0].Value.ToString(), this); sr.Show(); this.Hide(); } }