home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / DBPWDLG.INT < prev    next >
Text File  |  1996-05-08  |  1KB  |  37 lines

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