Hello everyone.
I am having trouble with something i wanna do. I have some big forms which take some time to create. To make the app load faster i thought of letting the forms be created in a thread which is created at main form's OnCreate event. The thread has a FApplication field of type TApplication which obviously is the Application variable. I use that to create the forms on the thread, but even tho I tried
FApplication.CreateForm (TfrmXXX, frmXXX)
and
frmXXX := TFrmXXX.Create(FApplication)
the forms still arent created. Is there any workaround for this ?
Thanks in advance.