12345678910111213141516171819202122232425262728293031323334353637383940 |
- unit bind_info;
- {$mode objfpc}{$H+}
- interface
- uses
- Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, Arrow,
- StdCtrls;
- type
- { TBindErrortInfo }
- TBindErrortInfo = class(TForm)
- Button1: TButton;
- Memo1: TMemo;
- procedure Memo1Change(Sender: TObject);
- private
- { private declarations }
- public
- { public declarations }
- end;
- var
- BindErrortInfo: TBindErrortInfo;
- implementation
- {$R *.lfm}
- { TBindErrortInfo }
- procedure TBindErrortInfo.Memo1Change(Sender: TObject);
- begin
- end;
- end.
|