private void btncategoria_Click(object sender, EventArgs e) { FConsultaCategoria f = new FConsultaCategoria(); f.ShowDialog(); if (f.ok) { idcategoria = int.Parse(f.dt.Rows[f.index]["cat_id"].ToString()); ttbcategoria.Text = f.dt.Rows[f.index]["cat_nome"].ToString(); } }
private void btnpesquisar_Click(object sender, EventArgs e) { FConsultaCategoria f = new FConsultaCategoria(); f.ShowDialog(); if (f.ok) { mostrar(f); gravacao(); status = 1; } else { id = 0; } }