Hallo, herzlich Willkommen!
Vorweg: Es heißt
kompilierbar und nicht
complimierbar.
Folgender Code funktioniert bei mir:
Delphi-Quellcode:
var
myImage: TImage;
begin
myImage := TImage.Create(Form1);
myImage.AutoSize := true;
myImage.Parent := Form1;
myImage.Picture.LoadFromFile(ExtractFilePath(ParamStr(0)) + 'test.bmp');
myImage.Left := 10;
myImage.Top := 10;
myImage.Show;
end;
Grüße, Matze