Do not create all forms automatically, even though Delphi gives you the option now, and did this unconditionally for new forms in earlier versions. Only create the main form, and use the following (pseudo) code for the showing of modal dialogs:

    procedure TMainForm.OptionDialog(Sender: TObject);
    var
      Dlg: TOptionDialog;
    begin
      Dlg := TOptionDialog.Create(Self);
      try
        // prepare dialog
        if Dlg.ShowModal = mrOK then begin
          // apply changed settings
        end;
      finally
        Dlg.Free;
      end;
    end;

This will shorten application loading time and reduce your overall resource usage, especially for complex dialogs with many controls.