Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
38
Добавлен:
21.05.2015
Размер:
546 б
Скачать
unit AboutU;

interface

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

type
  TAboutBox = class(TForm)
    Panel1: TPanel;
    ProgramIcon: TImage;
    ProductName: TLabel;
    Version: TLabel;
    Copyright: TLabel;
    OKButton: TButton;
    Comments: TLabel;
  end;

procedure ShowAboutBox;

implementation

{$R *.DFM}

procedure ShowAboutBox;
begin
  with TAboutBox.Create(Application) do
    try
      ShowModal;
    finally
      Free;
    end;
end;

end.
 
Соседние файлы в папке SysInfo
  • #
    21.05.20154 Кб39AboutU.dcu
  • #
    21.05.20152 Кб38AboutU.dfm
  • #
    21.05.2015546 б38AboutU.pas
  • #
    21.05.20159 Кб39Detail9x.~pas
  • #
    21.05.201511 Кб38Detail9x.dcu
  • #
    21.05.2015273 б38Detail9x.dfm
  • #
    21.05.20159 Кб38Detail9x.pas
  • #
    21.05.2015355 б38DetailNT.~dfm