home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / DEMOPRE.H < prev    next >
C/C++ Source or Header  |  1997-01-16  |  2KB  |  41 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef DemoPreH
  7. #define DemoPreH
  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. #include <vcl\Spin.hpp>
  15. #include <vcl\QuickRep.hpp>
  16. //---------------------------------------------------------------------------
  17. class TPrevForm : public TForm
  18. {
  19. __published:    // IDE-managed Components 
  20.     TPanel *Panel1;
  21.     TLabel *Label1;
  22.     TLabel *Label3;
  23.     TSpinEdit *SpinEdit1;
  24.     TSpinEdit *SpinEdit2;
  25.     TButton *Button1;
  26.     TButton *Button2;
  27.     TQRPreview *QRPreview1;
  28.     void __fastcall SpinEdit1Change(TObject *Sender);
  29.     void __fastcall SpinEdit2Change(TObject *Sender);
  30.     void __fastcall FormShow(TObject *Sender);
  31.     void __fastcall Button1Click(TObject *Sender);
  32.     void __fastcall Button2Click(TObject *Sender);
  33. private:        // User declarations
  34. public:         // User declarations
  35.     virtual __fastcall TPrevForm(TComponent* Owner);
  36. };
  37. //---------------------------------------------------------------------------
  38. extern TPrevForm *PrevForm;
  39. //---------------------------------------------------------------------------
  40. #endif
  41.