Thema: Delphi loadfromfile bei Timage

Einzelnen Beitrag anzeigen

Benutzerbild von himitsu
himitsu
Online

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.078 Beiträge
 
Delphi 12 Athens
 
#3

Re: loadfromfile bei Timage

  Alt 21. Apr 2004, 22:24
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;
Neuste Erkenntnis:
Seit Pos einen dritten Parameter hat,
wird PoSex im Delphi viel seltener praktiziert.
  Mit Zitat antworten Zitat