cp_info.pas 591 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. unit cp_info;
  2. {$mode objfpc}{$H+}
  3. interface
  4. uses
  5. Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, Arrow,
  6. StdCtrls;
  7. type
  8. { TParamsConnectInfo }
  9. TParamsConnectInfo = 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. ParamsConnectInfo: TParamsConnectInfo;
  20. implementation
  21. {$R *.lfm}
  22. { TParamsConnectInfo }
  23. procedure TParamsConnectInfo.Memo1Change(Sender: TObject);
  24. begin
  25. end;
  26. end.