Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Speedy Edit - About.pas

About.pas

Caricato da: TheKaneB
Scarica il programma completo

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TAboutBox = class(TForm)
  10.     Panel1: TPanel;
  11.     ProgramIcon: TImage;
  12.     ver: TLabel;
  13.     extver: TLabel;
  14.     Copyright: TLabel;
  15.     Comments: TLabel;
  16.     OKButton: TButton;
  17.     procedure FormCreate(Sender: TObject);
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   AboutBox: TAboutBox;
  26. const
  27.   versione = 'SpeedyEdit 2.5.3 -by KaneB-';
  28.   extversione = '2.5beta3 Freeware';
  29. implementation
  30. uses Principale;
  31.  
  32. {$R *.DFM}
  33.  
  34. procedure TAboutBox.FormCreate(Sender: TObject);
  35. begin
  36. ver.caption:=versione;
  37. extver.caption:=extversione;
  38. caption:=versione;
  39. end;
  40.  
  41. end.