Hallo ich wollte ein Image in ein anderes kopieren, innerhalb eines Formular funktioniert es, aber ich versuh dies von einem sog. Splashscreen , irgendwie will das nicht, Speicherzugriffsverletzung..
Form2.Image1.Picture:=Form3.Image1.Picture;
Delphi-Quellcode:
begin
Form3 := TForm3.Create(Application);
try
Form3.Show;
Application.Initialize;
Form3.Update;
Sleep(3000);
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Form3.Hide;
finally
Form3.Free;
end;
Application.Run;