Unit1.pas 369 B

1234567891011121314151617181920212223242526272829
  1. unit Unit1;
  2. interface
  3. uses
  4. Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5. Dialogs, StdCtrls;
  6. type
  7. TForm1 = class(TForm)
  8. lbl1: TLabel;
  9. edt1: TEdit;
  10. btn1: TButton;
  11. btn2: TButton;
  12. private
  13. { Private declarations }
  14. public
  15. { Public declarations }
  16. end;
  17. var
  18. Form1: TForm1;
  19. implementation
  20. {$R *.dfm}
  21. end.