Einzelnen Beitrag anzeigen

Benutzerbild von Dunkelbunt27
Dunkelbunt27

Registriert seit: 10. Aug 2010
232 Beiträge
 
Delphi XE Professional
 
#7

AW: Assistent-Probleme

  Alt 15. Feb 2011, 19:40
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?

Geändert von Dunkelbunt27 (15. Feb 2011 um 20:03 Uhr)
  Mit Zitat antworten Zitat