Thema: Delphi Problem mit Parameter

Einzelnen Beitrag anzeigen

Benutzerbild von phlux
phlux

Registriert seit: 4. Nov 2002
Ort: Witten
1.335 Beiträge
 
Delphi 6 Personal
 
#4

Re: Problem mit Parameter

  Alt 12. Okt 2003, 22:15
ist eigentlich ganz einfach:

Delphi-Quellcode:
program Project1;

uses
  Forms,
  Unit1 in 'Unit1.pas{Form1};

{$R *.res}

var
  param: String;

begin
  param := Copy(ParamStr(1),1,Length(ParamStr(1)));
  if UpperCase(param) = 'FORM1then
  begin
    Application.Initialize;
    Application.CreateForm(TForm1, Form1);
    Application.Run;
  else if UpperCase(param) = 'FORM2then //Angenommen unsere andere Form hieße Form2 dann...
  begin
    Application.Initialize;
    Application.CreateForm(TForm2, Form2);
    Application.Run;
  end;
end.
Christian "phlux" Arndt
  Mit Zitat antworten Zitat