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

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef CtrlFormH
  7. #define CtrlFormH
  8. //---------------------------------------------------------------------------
  9. #include <Forms.hpp>
  10. #include <ExtCtrls.hpp>
  11. #include <Controls.hpp>
  12. #include <Classes.hpp>
  13. #include <StdCtrls.hpp>
  14. #include <DBCGrids.hpp>
  15. #include <DBCtrls.hpp>
  16. #include <Mask.hpp>
  17. #include <DBGrids.hpp>
  18. #include <Grids.hpp>
  19. #include <Menus.hpp>
  20. //---------------------------------------------------------------------------
  21. class TFmCtrlGrid : public TForm
  22. {
  23. __published:
  24.     TBevel *Bevel1;
  25.     TLabel *Label5;
  26.     TLabel *Label6;
  27.     TLabel *Label7;
  28.     TLabel *Label8;
  29.     TLabel *Label9;
  30.     TLabel *Label10;
  31.     TLabel *Label11;
  32.     TLabel *lPurchase;
  33.     TLabel *lTotalCost;
  34.     TLabel *lTotalShares;
  35.     TLabel *lDifference;
  36.     TDBCtrlGrid *DBCtrlGrid1;
  37.     TLabel *Label1;
  38.     TLabel *Label2;
  39.     TLabel *Label3;
  40.     TLabel *Label4;
  41.     TDBEdit *DBEdit1;
  42.     TDBEdit *DBEdit2;
  43.     TDBEdit *DBEdit3;
  44.     TDBEdit *DBEdit4;
  45.     TDBGrid *DBGrid1;
  46.     TButton *Button1;
  47.     TDBNavigator *DBNavigator1;
  48.     TMainMenu *MainMenu1;
  49.     TMenuItem *About1;
  50.     void __fastcall DBCtrlGrid1Enter(TObject *Sender);
  51.     void __fastcall Button1Click(TObject *Sender);
  52.     void __fastcall DBGrid1Enter(TObject *Sender);
  53.     void __fastcall About1Click(TObject *Sender);
  54.     void __fastcall FormShow(TObject *Sender);
  55. private:        // private user declarations
  56. public:         // public user declarations
  57.     virtual __fastcall TFmCtrlGrid(TComponent* Owner);
  58. };
  59. //---------------------------------------------------------------------------
  60. extern TFmCtrlGrid *FmCtrlGrid;
  61. //---------------------------------------------------------------------------
  62. #endif
  63.