private void btnBuscarCategoriaEventos_Click(object sender, EventArgs e) { frmBusquedaFormas buscarformas = new frmBusquedaFormas(); buscarformas.ShowDialog(); if (buscarformas._idforma > 0) { cboCategoriaElementos.SelectedValue = buscarformas._idforma; } }
private void btnBuscar_Click(object sender, EventArgs e) { frmBusquedaFormas busCat = new frmBusquedaFormas(); busCat.ShowDialog(); if (busCat._idforma > 0) { posicion = tbl.Rows.IndexOf(tbl.Rows.Find(busCat._idforma)); mostrarDatos(); } }