home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Objrepos / password.pas < prev    next >
Pascal/Delphi Source File  |  1999-08-11  |  411b  |  29 lines

  1. unit Password;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, 
  6.   Buttons;
  7.  
  8. type
  9.   TPasswordDlg = class(TForm)
  10.     Label1: TLabel;
  11.     Password: TEdit;
  12.     OKBtn: TButton;
  13.     CancelBtn: TButton;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   PasswordDlg: TPasswordDlg;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. end.
  28.  
  29.