Ich weiß auch nicht, warum es nicht geht
aber mit image1.Picture.Bitmap.Empty geht's:
Delphi-Quellcode:
if (weissamzug=true) and (image1.Picture.Bitmap.Empty=true)
then Image1.Picture:=Imagewhite.Picture
else if (weissamzug=false) and (image1.Picture.Bitmap.Empty=true)
then Image1.Picture:=Imageblack.Picture;
etwas gekürzt
Delphi-Quellcode:
if weissamzug and image1.Picture.Bitmap.Empty
then Image1.Picture:=Imagewhite.Picture
else if (not weissamzug) and image1.Picture.Bitmap.Empty
then Image1.Picture:=Imageblack.Picture;