Hi,
und was ist das da ?
Delphi-Quellcode:
if combobox1.text='Concertphotos' then kind:='G' else kind:='D';
if combobox1.text='Session' then kind:='S' else kind:='D';
if combobox1.text='Other Photos' then kind:='D' else kind:='D';
da kommt doch immer bei kind nur ein D raus. Wozu soll das also gut sein ?
Delphi-Quellcode:
if combobox1.text='Concertphotos' then kind:='G'
else if combobox1.text='Session' then kind:='S'
else if combobox1.text='Other Photos' then kind:='D'
else kind:='D';
wäre wohl besser geeignet.
Gruss