1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| if DBComboBox1.Items=0 then
label1.Caption:='produit1';
dbedit7.DataSource:=datasource1;
dbedit7.DataField:='produit1';
if DBComboBox1.Items=1 then
label1.Caption:='produit2';
dbedit7.DataSource:=datasource1;
dbedit7.DataField:='produit2';
if DBComboBox1.Items=2 then
label1.Caption:='produit3';
dbedit7.DataSource:=datasource1;
dbedit7.DataField:='produit3';
if DBComboBox1.Items=3 then
label1.Caption:='produit4';
dbedit7.DataSource:=datasource1;
dbedit7.DataField:='produit4';
if DBComboBox1.Items=4 then
label1.Caption:='produit5';
dbedit7.DataSource:=datasource1;
dbedit7.DataField:='produit5'; |