bind_info.pas 575 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. unit bind_info;
  2. {$mode objfpc}{$H+}
  3. interface
  4. uses
  5. Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, Arrow,
  6. StdCtrls;
  7. type
  8. { TBindErrortInfo }
  9. TBindErrortInfo = class(TForm)
  10. Button1: TButton;
  11. Memo1: TMemo;
  12. procedure Memo1Change(Sender: TObject);
  13. private
  14. { private declarations }
  15. public
  16. { public declarations }
  17. end;
  18. var
  19. BindErrortInfo: TBindErrortInfo;
  20. implementation
  21. {$R *.lfm}
  22. { TBindErrortInfo }
  23. procedure TBindErrortInfo.Memo1Change(Sender: TObject);
  24. begin
  25. end;
  26. end.