Example #1
0
        private void btnEditar_Click(object sender, EventArgs e)
        {
            Matriculas frm = new Matriculas();

            if (dataGridView1.SelectedRows.Count > 0)
            {
                frm.txtCodigo.Text   = dataGridView1.CurrentRow.Cells[0].Value.ToString();
                frm.txtName.Text     = dataGridView1.CurrentRow.Cells[1].Value.ToString();
                frm.txtApellido.Text = dataGridView1.CurrentRow.Cells[2].Value.ToString();
                // frm.txtEspecialidad.Text = dataGridView1.CurrentRow.Cells[3].Value.ToString();
                // frm.txtSeccion.Text = dataGridView1.CurrentRow.Cells[4].Value.ToString();
                // frm.txtModalidad.Text = dataGridView1.CurrentRow.Cells[4].Value.ToString();
                frm.ShowDialog();
            }
            else
            {
                MessageBox.Show("DEBE SELECCIONAR UNA FILA PARA EDITAR");
            }
        }
Example #2
0
        private void btnNuevo_Click(object sender, EventArgs e)
        {
            Matriculas frm = new Matriculas();

            frm.ShowDialog();
        }