Advertisement
carlosfeitozafilho

UFormLogin.pas

Jun 18th, 2018
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.43 KB | None | 0 0
  1. unit UFormLogin;
  2.  
  3. interface
  4.  
  5. uses
  6.   Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  7.   Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
  8.  
  9. type
  10.   TFormLogin = class(TForm)
  11.     EDIT2: TEdit;
  12.     EDIT3: TEdit;
  13.     BUTN1: TButton;
  14.     BUTN2: TButton;
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20.  
  21. implementation
  22.  
  23. {$R *.dfm}
  24.  
  25. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement