home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INFO / Extras / RegCleanUtility / Source / Unit1.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-05-22  |  1.3 KB  |  45 lines

  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef Unit1H
  4. #define Unit1H
  5. //---------------------------------------------------------------------------
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include <ExtCtrls.hpp>
  11. #include <Graphics.hpp>
  12. #include <Registry.hpp>
  13. //---------------------------------------------------------------------------
  14.  
  15. #define PRODUCT_NAME 101
  16. #define MSG_APPNOTFOUND 102
  17. #define MSG_NTONLY 103
  18. #define MSG_UNKNOWNOS 104
  19. #define MSG_WARNING 105
  20. #define TITLE_WARNING 106
  21.  
  22.  
  23. class TForm1 : public TForm
  24. {
  25. __published:    // IDE-managed Components
  26.     TButton *Button1;
  27.     TButton *Button2;
  28.     TLabel *Label1;
  29.     TImage *Image1;
  30.     TBevel *Bevel1;
  31.     TLabel *Label2;
  32.     TLabel *Label3;
  33.     void __fastcall Button2Click(TObject *Sender);
  34.     void __fastcall ValidateConditions(TObject *Sender);
  35.     void __fastcall Button1Click(TObject *Sender);
  36. private:    // User declarations
  37.     bool bIsAdmin;
  38. public:        // User declarations
  39.     __fastcall TForm1(TComponent* Owner);
  40. };
  41. //---------------------------------------------------------------------------
  42. extern PACKAGE TForm1 *Form1;
  43. //---------------------------------------------------------------------------
  44. #endif
  45.