Example #1
0
        //-------------------------------------------------------------------------------------------------------------------
        private void btAddCor_Click(object sender, EventArgs e)
        {
            frmCadastroCor frm = new frmCadastroCor();

            frm.ShowDialog();
            frm.Dispose();
            BLLSubCategoria obj = new BLLSubCategoria();

            cbSubCategoria.DataSource    = obj.Listagem();
            cbSubCategoria.DisplayMember = "scat_nome";
            cbSubCategoria.ValueMember   = "scat_cod";
        }