Code: Alles auswählen
Form resource TLogForm not found. For resourceless forms CreateNew constructor must be used. See the global variable RequireDerivedFormResource.TLogForm ist ein komplett manuell erzeugtes Formular (Ohne Designer).
Code: Alles auswählen
Form resource TLogForm not found. For resourceless forms CreateNew constructor must be used. See the global variable RequireDerivedFormResource.Code: Alles auswählen
initialization
//LogForm := TLogForm.Create(nil);
LogForm := TLogForm.CreateNew(nil);
finalization
FreeAndNil(LogForm);
end.