unit udicasform;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TdicasForm = class(TForm)
    Memo1: TMemo;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  dicasForm: TdicasForm;

implementation

{$R *.dfm}

procedure TdicasForm.Button1Click(Sender: TObject);
begin
    close;
end;

end.
