home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / ObjRepos / dcexampl.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-02-01  |  927 b   |  27 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef DCDemoH
  3. #define DCDemoH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //----------------------------------------------------------------------------
  10. class TDCDemoForm : public TForm
  11. {
  12. __published:
  13.     TPanel *Panel1;
  14.     TDecisionPivot *DecisionPivot1;
  15.     TDecisionCube *DecisionCube1;
  16.     TDecisionQuery *DecisionQuery1;
  17.     TDecisionSource *DecisionSource1;
  18.     TDecisionGrid *DecisionGrid1;
  19. private:
  20. public:
  21.     virtual __fastcall TDCDemoForm(TComponent* AOwner);
  22. };
  23. //----------------------------------------------------------------------------
  24. extern PACKAGE TDCDemoForm *DCDemoForm;
  25. //----------------------------------------------------------------------------
  26. #endif
  27.