private void btnModificar_Click(object sender, EventArgs e) { if (grDatos.SelectedCells.Count > 0) { idMun = Convert.ToInt32(this.grDatos.CurrentRow.Cells["pkMunicipio"].Value); frmRegistroMunicipio f = new frmRegistroMunicipio(this); f.ShowDialog(); } else { MessageBox.Show("No hay elementos"); } }
private void btnAgregar_Click(object sender, EventArgs e) { frmRegistroMunicipio nMuni = new frmRegistroMunicipio(); nMuni.ShowDialog(); }