home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk14 / doc.pak / DBPWDLG.INT < prev    next >
Encoding:
Text File  |  1995-08-24  |  1.0 KB  |  38 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Delphi Visual Component Library                 }
  5. {                                                       }
  6. {       Copyright (c) 1995 Borland International        }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit DBPWDlg;
  11.  
  12. {$S-}
  13.  
  14. interface
  15.  
  16. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  17.   Buttons;
  18.  
  19. type
  20.   TPasswordDialog = class(TForm)
  21.     GroupBox1: TGroupBox;
  22.     Edit: TEdit;
  23.     AddButton: TButton;
  24.     RemoveButton: TButton;
  25.     RemoveAllButton: TButton;
  26.     OKButton: TBitBtn;
  27.     CancelButton: TBitBtn;
  28.     procedure EditChange(Sender: TObject);
  29.     procedure AddButtonClick(Sender: TObject);
  30.     procedure RemoveButtonClick(Sender: TObject);
  31.     procedure RemoveAllButtonClick(Sender: TObject);
  32.     procedure OKButtonClick(Sender: TObject);
  33.   end;
  34.  
  35. function PasswordDialog: Boolean;
  36.  
  37. implementation
  38.