private void btnCriar_Click(object sender, EventArgs e) { string cod_atividade = "NOVA"; this.Hide(); telaCriarExercicio CriarExercicio = new telaCriarExercicio("CRIAR NOVO EXERCICIO", cod_user, cod_atividade); CriarExercicio.Closed += (s, args) => this.Close(); CriarExercicio.Show(); }
private void btnAlterar_Click(object sender, EventArgs e) { //PEGA PRIMEIRA LINHA E COLUNA DA TABELA = COD_ATIVIDADE string cod_atividade = dtExecicios.Rows[0][0].ToString(); this.Hide(); telaCriarExercicio CriarExercicio = new telaCriarExercicio("ALTERAR EXERCÍCIO", cod_user, cod_atividade); CriarExercicio.Closed += (s, args) => this.Close(); CriarExercicio.Show(); }