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

  1. //---------------------------------------------------------------------------
  2. // Borland C++Builder
  3. // Copyright (c) 1987, 1997 Borland International Inc.  All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef splashH
  7. #define splashH
  8. //---------------------------------------------------------------------------
  9. #include <vcl\Classes.hpp>
  10. #include <vcl\Controls.hpp>
  11. #include <vcl\StdCtrls.hpp>
  12. #include <vcl\Forms.hpp>
  13. #include <vcl\ExtCtrls.hpp>
  14. //---------------------------------------------------------------------------
  15. class TSplashForm : public TForm
  16. {
  17. __published:    // IDE-managed Components
  18.     TPanel *Panel1;
  19.     TImage *Image1;
  20.     TLabel *Label3;
  21.     TBevel *Bevel1;
  22.     TLabel *Label1;
  23. private:    // User declarations
  24. public:        // User declarations
  25.     virtual __fastcall TSplashForm(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern TSplashForm *SplashForm;
  29. //---------------------------------------------------------------------------
  30. #endif
  31.