Sha256: 51b6e052b34e01dafdf54255c5a610775ee6dcc1d8cafa7535af404e6be6d07f

Contents?: true

Size: 436 Bytes

Versions: 11

Compression:

Stored size: 436 Bytes

Contents

unit FormAboutU;

interface

uses
  Classes,
  Controls,
  Forms,
  StdCtrls;

type
  TFormAbout = class(TForm)
    LabelAbout: TLabel;
    ButtonOk: TButton;
    LabelCopyright: TLabel;
    procedure ButtonOkClick(Sender: TObject);

  private

  public

  end;

var
  FormAbout: TFormAbout;

implementation

{$R *.dfm}

procedure TFormAbout.ButtonOkClick(Sender: TObject);
begin
  Close;
end;

end.

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
win32-autogui-0.5.3 examples/quicknote/FormAboutU.pas
win32-autogui-0.5.2 examples/quicknote/FormAboutU.pas
win32-autogui-0.5.1 examples/quicknote/FormAboutU.pas
win32-autogui-0.5.0 examples/quicknote/FormAboutU.pas
win32-autogui-0.4.3 examples/quicknote/FormAboutU.pas
win32-autogui-0.4.2 examples/quicknote/FormAboutU.pas
win32-autogui-0.4.1 examples/quicknote/FormAboutU.pas
win32-autogui-0.4.0 examples/quicknote/FormAboutU.pas
win32-autogui-0.3.0 examples/quicknote/FormAboutU.pas
win32-autogui-0.2.1 examples/quicknote/FormAboutU.pas
win32-autogui-0.2.0 examples/quicknote/FormAboutU.pas