Hallo,
habe foldenden code:
Code:
FSplash := tFSplash.Create (Application);
Try
// SplashScreen Fenster anzeigen
Application.Initialize;
Application.Title := 'WWCL Tool 1.0';
Application.CreateForm(Tfmain, fmain);
FSplash.Show;
fsplash.Update;
Application.CreateForm(Tform2, form2);
Application.CreateForm(Tform3, form3);
sleep(300);
FSplash.Hide;
finally
FSplash.Free;
end;
Application.Run;
end.
Bei FSplash.update kommt es immer zu einer zugriffsverletzung. Woran liegt dies? Wenn ich den Code Zeile fuer Zeile debugge, kommt diese Verletzung nicht. Wo kann das Problem liegen?
Im oncreate von fmain fuelle ich eineImagekomponente des FSplash Formulars mit einem Bild, aber das muesste ja auch ok sein, da das fsplash- Formular ja bereits erzeugt wurde
Danke fuer eure Hilfe
lkz633