home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / PASSWORD.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  945b  |  30 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef PassWordH
  3. #define PassWordH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\Buttons.hpp>
  6. #include <vcl\StdCtrls.hpp>
  7. #include <vcl\Controls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Graphics.hpp>
  10. #include <vcl\Classes.hpp>
  11. #include <vcl\SysUtils.hpp>
  12. #include <vcl\Windows.hpp>
  13. #include <vcl\System.hpp>
  14. //----------------------------------------------------------------------------
  15. class TPasswordDlg : public TForm
  16. {
  17. __published:
  18.     TLabel *Label1;
  19.     TEdit *Password;
  20.     TButton *OKBtn;
  21.     TButton *CancelBtn;
  22. private:
  23. public:
  24.     virtual __fastcall TPasswordDlg(TComponent* AOwner);
  25. };
  26. //----------------------------------------------------------------------------
  27. extern TPasswordDlg *PasswordDlg;
  28. //----------------------------------------------------------------------------
  29. #endif    
  30.