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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 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\QuickRep.hpp>
  15. #include <vcl\ComCtrls.hpp>
  16. //---------------------------------------------------------------------------
  17. class TPrevForm : public TForm
  18. {
  19. __published:    // IDE-managed Components 
  20.     TPanel *Panel1;
  21.     TLabel *Label1;
  22.     TLabel *Label3;
  23.     TButton *Button1;
  24.     TButton *Button2;
  25.     TQRPreview *QRPreview1;
  26.     TUpDown *UpDown1;
  27.     TEdit *Edit1;
  28.     TUpDown *UpDown2;
  29.     TEdit *Edit2;
  30.     
  31.     void __fastcall FormShow(TObject *Sender);
  32.     void __fastcall Button1Click(TObject *Sender);
  33.     void __fastcall Button2Click(TObject *Sender);
  34.     void __fastcall UpDown1Click(TObject *Sender, TUDBtnType Button);
  35.     void __fastcall UpDown2Click(TObject *Sender, TUDBtnType Button);
  36.     
  37.     
  38.     
  39.     
  40.     void __fastcall Edit2KeyUp(TObject *Sender, WORD &Key, TShiftState Shift);
  41.     void __fastcall Edit1KeyUp(TObject *Sender, WORD &Key, TShiftState Shift);
  42. private:        // User declarations
  43. public:         // User declarations
  44.     virtual __fastcall TPrevForm(TComponent* Owner);
  45. };
  46. //---------------------------------------------------------------------------
  47. extern TPrevForm *PrevForm;
  48. //---------------------------------------------------------------------------
  49. #endif
  50.