Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/Delphi/Agenda 1.1/Sources/   (Columbo Version 0.7©)  Datei vom 4.1.2008 mit Größe 852 B image not shown  

Quelle  reLang.pas   Sprache: Delphi

 
unit reLang;

interface

uses Windows, Classes, Graphics, Forms, Controls, StdCtrls,
  Buttons, ExtCtrls, SysUtils;

type
  TLangBox = class(TForm)
    OKButton: TButton;
    Panel1: TPanel;
    Copyright: TLabel;
    LanguageBox: TComboBox;
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  LangBox: TLangBox;

procedure ShowLangBox;

implementation

{$R *.dfm}

const
  SCopyright     = 'Copyright © 1996, 1998-2002 Borland International';

procedure ShowLangBox;
begin
  with TLangBox.Create(Application) do
  try
    ShowModal;
  finally
    Free;
  end;
end;

procedure TLangBox.FormCreate(Sender: TObject);
begin
  Caption := Format('Lang %s', [Application.Title]);
  CopyRight.Caption := SCopyRight;
end;

end.

95%


¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung ist noch experimentell.