Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Programmieren allgemein (https://www.delphipraxis.net/40-programmieren-allgemein/)
-   -   Inno Setup Programme in Code teil aufrufen. (https://www.delphipraxis.net/55283-inno-setup-programme-code-teil-aufrufen.html)

trivial 19. Okt 2005 07:18


Inno Setup Programme in Code teil aufrufen.
 
Hallo,

kann mir einer sagen, wann im Programm dieser Teil aufgerufen wird?

Code:
function MsgBox(const Text: String; const Typ: TMsgBoxType; const Buttons: Integer): Integer;

begin
  // Display a simple message box with an OK button
  MsgBox('Hello.', mbInformation, MB_OK);

  // Ask the user a Yes/No question
  if MsgBox('Are you sure?', mbConfirmation, MB_YESNO) = IDYES then
  begin
    // user clicked Yes
  end;

  // Ask the user a Yes/No question, defaulting to No
  if MsgBox('Are you sure?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2) = IDYES then
  begin
    // user clicked Yes
  end;
end;
Bei mir gibt der nämlich nie was aus.
Habe ich was vergessen.
Danke

[edit=Sharky]Code-Tags vervollständigt Mfg, Sharky[/edit]

Orbmu2k 19. Okt 2005 07:24

Re: Inno Setup Programme in Code teil aufrufen.
 
Das sollte glaub ich die einstiegs Prozedur sein

Delphi-Quellcode:

procedure InitializeWizard();
begin


end;


Alle Zeitangaben in WEZ +1. Es ist jetzt 06:07 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz