home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / leadtools / ocx32.lt / PROGDIAG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-19  |  968 b   |  29 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef ProgDiagH
  3. #define ProgDiagH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\ExtCtrls.hpp>
  6. #include <vcl\Buttons.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Controls.hpp>
  9. #include <vcl\Forms.hpp>
  10. #include <vcl\Graphics.hpp>
  11. #include <vcl\Classes.hpp>
  12. #include <vcl\SysUtils.hpp>
  13. #include <vcl\Windows.hpp>
  14. #include <vcl\System.hpp>
  15. #include <vcl\ComCtrls.hpp>
  16. //----------------------------------------------------------------------------
  17. class TProgressDialog : public TForm
  18. {
  19. __published:
  20.     TProgressBar *ProgressBar1;
  21. private:
  22. public:
  23.     virtual __fastcall TProgressDialog(TComponent* AOwner);
  24. };
  25. //----------------------------------------------------------------------------
  26. extern TProgressDialog *ProgressDialog;
  27. //----------------------------------------------------------------------------
  28. #endif    
  29.