mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-01 07:43:45 +02:00
41 lines
619 B
ObjectPascal
41 lines
619 B
ObjectPascal
unit frmapplydatadict;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls;
|
|
|
|
type
|
|
|
|
{ TApplyDataDictionaryForm }
|
|
|
|
TApplyDataDictionaryForm = class(TForm)
|
|
BOK: TButton;
|
|
MLog: TMemo;
|
|
procedure BOKClick(Sender: TObject);
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
ApplyDataDictionaryForm: TApplyDataDictionaryForm;
|
|
|
|
implementation
|
|
|
|
{ TApplyDataDictionaryForm }
|
|
|
|
procedure TApplyDataDictionaryForm.BOKClick(Sender: TObject);
|
|
begin
|
|
Close;
|
|
end;
|
|
|
|
initialization
|
|
{$I frmapplydatadict.lrs}
|
|
|
|
end.
|
|
|