Exemple #1
0
        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            participantes   par      = new participantes();
            DataGridViewRow rellenar = dvparticipantes.Rows[e.RowIndex];

            par.txtmatriculap.Text    = rellenar.Cells["matricula"].Value.ToString();
            par.txtnombrep.Text       = rellenar.Cells["nombres"].Value.ToString();
            par.txtapellidop.Text     = rellenar.Cells["apellidos"].Value.ToString();
            par.txtcedulap.Text       = rellenar.Cells["cedula"].Value.ToString();
            par.txtdireccionp.Text    = rellenar.Cells["direccion"].Value.ToString();
            par.txtmatriculap.Enabled = false;
            par.Show();
        }
Exemple #2
0
        private void participantesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            participantes abrir = new participantes();

            abrir.Show();
        }