Okay, momentan sieht es so aus:
Projekt-Quelltext
Delphi-Quellcode:
Application.Initialize;
Application.MainFormOnTaskbar := True;
Assistent:=TAssistent.Create(Application);
try
Assistent.ShowModal;
finally
Assistent.Free;
end;
Application.CreateForm(TAssistent, Assistent);
Application.CreateForm(THauptprogramm, Hauptprogramm);
Application.Run;
Fortsetzen Button
Delphi-Quellcode:
self.ModalResult:=mrOk;
self.Close;
Abbrechen-Button
ModalResult:=mrCancel
Es startet ohne Fehler, aber wnen ich auf Fortsetzen klicke, dann schließt sich der Assistent und öffnet sich erneut...
wie kann ich statt 2x dem Assistenten das Hauptprogramm starten?