Beispiel #1
0
        private void llenarcolor(string id, string nom)
        {
            DataTable dt = new DataTable();
            string    tipo = CboTipo.SelectedValue.ToString(), estilo = CboEstilo.SelectedValue.ToString();

            dt = prod.colorlst(nom, estilo, tipo);
            CboColor.DataSource    = dt;
            CboColor.DisplayMember = "color";
            CboColor.ValueMember   = "id";
            llenarTalla(id, nom);
        }