private void subCategoriaToolStripMenuItem_Click(object sender, EventArgs e) { frmCadastroSubCategoria f = new frmCadastroSubCategoria(); f.ShowDialog(); f.Dispose(); }
private void btAddSubCategoria_Click(object sender, EventArgs e) { frmCadastroSubCategoria f = new frmCadastroSubCategoria(); f.ShowDialog(); f.Dispose(); //combo da categoria DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao); try { //combo da subcategoria BLLSubCategoria sbll = new BLLSubCategoria(cx); cbSubCategoria.DataSource = sbll.LocalizarPorCategoria((int)cbCategoria.SelectedValue); cbSubCategoria.DisplayMember = "scat_nome"; cbSubCategoria.ValueMember = "scat_cod"; } catch { //MessageBox.Show("Cadastre uma categoria"); } }