Ejemplo n.º 1
0
        private void subCatecoriaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmCadastroSubCategoria f = new frmCadastroSubCategoria();

            f.ShowDialog();
            f.Dispose();
        }
Ejemplo n.º 2
0
        private void btnAddSubCat_Click(object sender, EventArgs e)
        {
            frmCadastroSubCategoria f = new frmCadastroSubCategoria();

            f.ShowDialog();
            f.Dispose();
            DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao);

            try
            {
                BLLSubCategoria sbll = new BLLSubCategoria(cx);
                if (cmbCategoria.SelectedIndex >= 0)
                {
                    cmbSubCategoria.DataSource    = sbll.LocalizarPorCategoria((int)cmbCategoria.SelectedValue);
                    cmbSubCategoria.DisplayMember = "scat_nome";
                    cmbSubCategoria.ValueMember   = "scat_cod";
                }
            }
            catch
            {
                MessageBox.Show("Cadastre uma categoria!");
            }
        }