private void ConsultarCategoria(object o, EventArgs e) { Cadastrar.FrmCategoria fcu = new Cadastrar.FrmCategoria(); fcu.txtNome.ReadOnly = true; fcu.txtDescricao.ReadOnly = true; fcu.txtNome.Text = Convert.ToString(dataGridView1.CurrentRow.Cells[1].Value); fcu.txtDescricao.Text = Convert.ToString(dataGridView1.CurrentRow.Cells[2].Value); fcu.label5.Text = "Consultando Categoria"; fcu.btnCadastrar.Visible = false; fcu.ShowDialog(); }
private void CadastrarCategoria(object o, EventArgs e) { Telas.Cadastrar.FrmCategoria f = new Cadastrar.FrmCategoria(); f.ShowDialog(); }